Changeset 580209
- Timestamp:
- 08/01/2012 10:19:28 AM (14 years ago)
- Location:
- tailored-tools
- Files:
-
- 24 added
- 5 edited
-
tags/1.3.5 (added)
-
tags/1.3.5/form.contact.php (added)
-
tags/1.3.5/form.sample.php (added)
-
tags/1.3.5/lib (added)
-
tags/1.3.5/lib/class.akismet.php (added)
-
tags/1.3.5/lib/class.ayah.php (added)
-
tags/1.3.5/lib/class.forms.php (added)
-
tags/1.3.5/lib/class.recaptcha.php (added)
-
tags/1.3.5/lib/countries.php (added)
-
tags/1.3.5/lib/json.php (added)
-
tags/1.3.5/lib/lib.ayah.php (added)
-
tags/1.3.5/lib/recaptchalib.php (added)
-
tags/1.3.5/lib/tinymce.php (added)
-
tags/1.3.5/readme.txt (added)
-
tags/1.3.5/resource (added)
-
tags/1.3.5/resource/admin.css (added)
-
tags/1.3.5/resource/custom.css (added)
-
tags/1.3.5/resource/exclaim.gif (added)
-
tags/1.3.5/resource/icons.png (added)
-
tags/1.3.5/resource/loader.js (added)
-
tags/1.3.5/resource/mce-icon.gif (added)
-
tags/1.3.5/resource/tinymce.js.php (added)
-
tags/1.3.5/shortcodes.php (added)
-
tags/1.3.5/tools.php (added)
-
trunk/lib/class.forms.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/resource/loader.js (modified) (1 diff)
-
trunk/shortcodes.php (modified) (1 diff)
-
trunk/tools.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tailored-tools/trunk/lib/class.forms.php
r570563 r580209 19 19 // Customise these in child-class 20 20 public $nonce = 'tailored-tools'; 21 public $admin_menu = 'index.php'; // parent-hook for add_menu_item 21 22 public $form_name = false; 22 23 public $questions = false; // Will be an array of questions. See docs for sample. … … 492 493 if ($count && $count->private>0) $counter = '<span class="update-plugins"><span class="update-count">'. $count->private .'</span></span>'; 493 494 } 494 $hook = add_submenu_page( 'index.php', $this->form_name, $this->form_name.$counter, 'edit_posts', $this->option_key, array(&$this,'admin_page'));495 $hook = add_submenu_page($this->admin_menu, $this->form_name, $this->form_name.$counter, 'edit_posts', $this->option_key, array(&$this,'admin_page')); 495 496 add_action("load-$hook", array(&$this,'admin_enqueue')); 496 497 } -
tailored-tools/trunk/readme.txt
r570563 r580209 4 4 Requires at least: 3.0 5 5 Tested up to: 3.4.1 6 Stable tag: 1.3. 46 Stable tag: 1.3.5 7 7 8 8 Contains some helper classes to help you build custom forms. … … 51 51 == Changelog == 52 52 53 = 1.3.5 = 54 * Fix issue with ui_tabs - JS and shortcode 55 * Added some more filters for better 56 53 57 = 1.3.4 = 54 58 * Fix to apply 'required' class to datepicker elements -
tailored-tools/trunk/resource/loader.js
r566366 r580209 25 25 var tab_counter = 0; 26 26 jQuery(document).ready(function($) { 27 if ($('. format_text .ui_tabs').size() < 1) { return; }28 $('. format_text .ui_tabs').each(function(i, tabset) {27 if ($('.ui_tabs').size() < 1) { return; } 28 $('.ui_tabs').each(function(i, tabset) { 29 29 var ul = $( document.createElement('ul') ); 30 30 //var ul = $('ul'); -
tailored-tools/trunk/shortcodes.php
r566366 r580209 50 50 // Using do_shortcode() to apply shortcodes inside the tabs 51 51 $content = '<div class="ui_tabs">'."\n".do_shortcode($content)."\n".'</div>'."\n"; 52 // Add JS 53 wp_enqueue_script('jquery-ui-tabs'); 54 // Return 52 55 return $content; 53 56 } -
tailored-tools/trunk/tools.php
r566843 r580209 3 3 Plugin Name: Tailored Tools 4 4 Description: Adds some functionality to WordPress that you'll need. 5 Version: 1.3. 35 Version: 1.3.5 6 6 Author: Tailored Web Services 7 7 Author URI: http://www.tailored.com.au … … 31 31 32 32 33 34 33 35 ?>
Note: See TracChangeset
for help on using the changeset viewer.