Changeset 2002:a0de6679a058 for plugins
- Timestamp:
- 09/22/13 12:09:07 (12 years ago)
- Branch:
- default
- Location:
- plugins
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/aboutConfig/index.php
r1553 r2002 134 134 135 135 <?php 136 $table_header = '< table class="settings" id="%s"><caption class="as_h3">%s</caption>'.136 $table_header = '<div class="table-outer"><table class="settings" id="%s"><caption class="as_h3">%s</caption>'. 137 137 '<thead>'. 138 138 '<tr>'."\n". … … 144 144 '</thead>'."\n". 145 145 '<tbody>'; 146 $table_footer = '</tbody></table> ';146 $table_footer = '</tbody></table></div>'; 147 147 148 148 $settings = array(); -
plugins/antispam/index.php
r1941 r2002 185 185 186 186 echo 187 '<div class="table-outer">'. 187 188 '<table class="dragable">'. 188 189 '<caption class="as_h3">'.__('Available spam filters').'</caption>'. … … 219 220 } 220 221 echo 221 '</tbody></table> '.222 '</tbody></table></div>'. 222 223 '<p>'.form::hidden('filters_order',''). 223 224 $core->formNonce(). -
plugins/blogroll/edit.php
r1941 r2002 154 154 '<div class="col70 last-col">'. 155 155 '<h3>'.__('XFN information').'</h3>'. 156 '<div class="table-outer">'. 156 157 '<table class="noborder">'. 157 158 … … 235 236 '</p></td>'. 236 237 '</tr>'. 237 '</table> '.238 '</table></div>'. 238 239 239 240 '</div>'. -
plugins/blogroll/index.php
r1553 r2002 212 212 213 213 <form action="plugin.php" method="post" id="links-form"> 214 <table class="maximal dragable"> 214 <div class="table-outer"> 215 <table class="dragable"> 215 216 <thead> 216 217 <tr> … … 253 254 ?> 254 255 </tbody> 255 </table> 256 </table></div> 256 257 257 258 <div class="two-cols"> -
plugins/daInstaller/inc/lib.da.installer.ui.php
r1568 r2002 52 52 53 53 $html_block = 54 '<table summary="modules" class="maximal">'. 54 '<div class="table-outer">'. 55 '<table caption="modules" class="maximal">'. 55 56 '<thead>'. 56 57 '<tr>'. … … 62 63 '</thead>'. 63 64 '<tbody>%s</tbody>'. 64 '</table> ';65 '</table></div>'; 65 66 66 67 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; … … 206 207 $html_block = 207 208 '<form action="'.$url.'" method="post">'. 208 '<table summary="upd-%1$s" class="maximal">'. 209 '<div class="table-outer">'. 210 '<table caption="upd-%1$s" class="maximal">'. 209 211 '<thead>'. 210 212 '<tr>'. … … 215 217 '</thead>'. 216 218 '<tbody>%2$s</tbody>'. 217 '</table> '.219 '</table></div>'. 218 220 '<div class="two-cols">'. 219 221 '<p class="col checkboxes-helpers"></p>'. -
plugins/pages/list.php
r2000 r2002 33 33 } 34 34 $html_block = 35 '<div class="table-outer">'. 35 36 '<table class="maximal dragable"><thead><tr>'. 36 37 '<th colspan="3">'.__('Title').'</th>'. … … 40 41 '<th>'.__('Trackbacks').'</th>'. 41 42 '<th>'.__('Status').'</th>'. 42 '</tr></thead><tbody id="pageslist">%s</tbody></table> ';43 '</tr></thead><tbody id="pageslist">%s</tbody></table></div>'; 43 44 44 45 if ($enclose_block) { -
plugins/simpleMenu/index.php
r1973 r2002 461 461 // Entête table 462 462 echo 463 '<table class="maximal dragable">'. 463 '<div class="table-outer">'. 464 '<table class="dragable">'. 464 465 '<caption>'.__('Menu items list').'</caption>'. 465 466 '<thead>'. … … 495 496 } 496 497 echo '</tbody>'. 497 '</table> ';498 '</table></div>'; 498 499 if (!$step) { 499 500 echo '<div class="two-cols">'; -
plugins/tags/tags.php
r1358 r2002 62 62 } 63 63 64 $table = '<div class="col">< table class="tags">%s</table></div>';64 $table = '<div class="col"><div class="table-outer"><table class="tags">%s</table></div></div>'; 65 65 66 66 if ($cols[0]) -
plugins/userPref/index.php
r1553 r2002 130 130 131 131 <?php 132 $table_header = '< table class="prefs" id="%s"><caption class="as_h3">%s</caption>'.132 $table_header = '<div class="table-outer"><table class="prefs" id="%s"><caption class="as_h3">%s</caption>'. 133 133 '<thead>'. 134 134 '<tr>'."\n". … … 140 140 '</thead>'."\n". 141 141 '<tbody>'; 142 $table_footer = '</tbody></table> ';142 $table_footer = '</tbody></table></div>'; 143 143 144 144 $prefs = array();
Note: See TracChangeset
for help on using the changeset viewer.