Changeset 166709
- Timestamp:
- 10/25/2009 12:35:39 AM (16 years ago)
- Location:
- hackadelic-widgetvoodoo/trunk
- Files:
-
- 4 edited
-
hackadelic-widgetvoodoo-admx.php (modified) (2 diffs)
-
hackadelic-widgetvoodoo-settings.php (modified) (2 diffs)
-
hackadelic-widgetvoodoo.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hackadelic-widgetvoodoo/trunk/hackadelic-widgetvoodoo-admx.php
r95071 r166709 48 48 array( 49 49 'text' => 'Order a plugin', 50 'url' => 'http://hackadelic.com/ contact',50 'url' => 'http://hackadelic.com/services', 51 51 'icon' => "http://lh5.ggpht.com/_eYaV9fZ6qRg/SYj7lcn3TFI/AAAAAAAAAGc/IIpGTWolB7k/s800/lightbulb.png" ), 52 52 ); … … 79 79 </style> 80 80 <div class="wrap"> 81 <div id="icon-options-general" class="icon32"><br /></div> 81 82 <h2><?php echo $admPageTitle ?></h2> 82 83 -
hackadelic-widgetvoodoo/trunk/hackadelic-widgetvoodoo-settings.php
r110764 r166709 33 33 include 'hackadelic-widgetvoodoo-admx.php'; 34 34 ?> 35 <style> 36 table#sidebar-data td.sidebar-info { 37 border: double #ccc; 38 padding-top: 1em; 39 } 40 </style> 35 41 36 42 <?php if ($updated) : ?> … … 85 91 ?> 86 92 87 <table> 93 <?php $ncols = $odd = 0 ?> 94 <table id="sidebar-data"> 88 95 <tr><td colspan="2"><b><?php $this->e('Your current theme\'s sidebar data:') ?></b></td></tr> 89 <tr valign="top" >96 <tr valign="top" class="sidebar-info"> 90 97 <?php foreach ($suggestions['sidebar-data'] as $lines) : ?> 91 <td >98 <td class="sidebar-info"> 92 99 <?php foreach ($lines as $s) : ?> 93 100 <div style="border:1px solid #eee"><?php echo $s ?></div> 94 101 <?php endforeach ?> 95 102 </td> 103 <?php if (++$ncols > 1): $ncols = 0; $odd = !$odd; ?> 104 </tr> 105 <tr valign="top" class="notfirst sidebar-info"> 106 <?php endif ?> 96 107 <?php endforeach ?> 97 108 </tr> -
hackadelic-widgetvoodoo/trunk/hackadelic-widgetvoodoo.php
r121065 r166709 2 2 /* 3 3 Plugin Name: Hackadelic WidgetVoodoo 4 Version: 1.0. 64 Version: 1.0.7 5 5 Plugin URI: http://hackadelic.com/solutions/wordpress/widgetvoodoo 6 6 Description: Morphs sidebar widgets into cool, collapsible AJAX-type citizens. … … 50 50 { 51 51 var $PLUGIN_TITLE = 'Widget Voodoo'; 52 var $VERSION = '1.0. 5';52 var $VERSION = '1.0.7dev'; 53 53 54 54 var $WIDGET_WRAP_SELECTOR = '.widget'; -
hackadelic-widgetvoodoo/trunk/readme.txt
r121247 r166709 15 15 ### Change Log 16 16 17 #### 1.0.6 17 #### [1.0.7] 18 19 * Improved setting page apearence for themes with *lots* of sidebars 20 * Verified compatibility with WP 2.8.5 21 * Minor fixes/improvements 22 23 #### [1.0.6] 18 24 19 25 * Fixes [an issue related to some rare widgets with uncommon HTML layout](http://wordpress.org/support/topic/274155), where titles were collapsed as well.
Note: See TracChangeset
for help on using the changeset viewer.