Changeset 782:01efbf050a8a for admin/plugins.php
- Timestamp:
- 12/06/11 11:43:14 (14 years ago)
- Branch:
- formfilters
- Parents:
- 781:b509ac00bf4a (diff), 779:58c45f1b96e5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/plugins.php
r500 r782 227 227 echo 228 228 '<h3>'.__('Activated plugins').'</h3>'. 229 '<table class="clear plugins"><tr>'. 230 '<th>'.__('Plugin').'</th>'. 231 '<th class="nowrap">'.__('Version').'</th>'. 232 '<th class="nowrap">'.__('Details').'</th>'. 233 '<th class="nowrap">'.__('Action').'</th>'. 234 '</tr>'; 229 '<table class="clear plugins">'. 230 '<caption>'.__('Activated plugin list').'</caption>'. 231 '<thead><tr>'. 232 '<th scope="col">'.__('Plugin').'</th>'. 233 '<th scope="col" class="nowrap">'.__('Version').'</th>'. 234 '<th scope="col" class="nowrap">'.__('Details').'</th>'. 235 '<th scope="col" class="nowrap">'.__('Action').'</th>'. 236 '</tr></thead>'. 237 '<tbody>'; 235 238 236 239 foreach ($p_available as $k => $v) … … 241 244 echo 242 245 '<tr class="line wide">'. 243 '<t d class="minimal nowrap"><strong>'.html::escapeHTML($k).'</strong></td>'.246 '<th scope="row" class="minimal nowrap"><strong>'.html::escapeHTML($k).'</strong></th>'. 244 247 '<td class="minimal">'.html::escapeHTML($v['version']).'</td>'. 245 248 '<td class="maximal"><strong>'.html::escapeHTML($v['name']).'</strong> '. … … 265 268 } 266 269 echo 270 '</tbody>'. 267 271 '</table>'; 268 272 } … … 274 278 echo 275 279 '<h3>'.__('Deactivated plugins').'</h3>'. 276 '<table class="clear plugins"><tr>'. 277 '<th>'.__('Plugin').'</th>'. 278 '<th class="nowrap">'.__('Action').'</th>'. 279 '</tr>'; 280 '<table class="clear plugins">'. 281 '<caption>'.__('Deactivated plugin list').'</caption>'. 282 '<thead><tr>'. 283 '<th scope="col">'.__('Plugin').'</th>'. 284 '<th scope="col" class="nowrap">'.__('Action').'</th>'. 285 '</tr></thead>'. 286 '<tbody>'; 280 287 281 288 foreach ($p_disabled as $k => $v) … … 286 293 echo 287 294 '<tr class="line wide">'. 288 '<t d class="maximal nowrap"><strong>'.html::escapeHTML($k).'</strong></td>'.295 '<th scope="row" class="maximal nowrap"><strong>'.html::escapeHTML($k).'</strong></th>'. 289 296 '<td class="nowrap action">'; 290 297 … … 308 315 } 309 316 echo 317 '</tbody>'. 310 318 '</table>'; 311 319 } -
admin/plugins.php
r456 r782 4 4 # This file is part of Dotclear 2. 5 5 # 6 # Copyright (c) 2003-201 0Olivier Meunier & Association Dotclear6 # Copyright (c) 2003-2011 Olivier Meunier & Association Dotclear 7 7 # Licensed under the GPL version 2.0 license. 8 8 # See LICENSE file or … … 173 173 174 174 echo 175 '<h2 >'.__('Plugins management').'</h2>';175 '<h2 class="page-title">'.__('Plugins management').'</h2>'; 176 176 177 177 if (!empty($_GET['removed'])) {
Note: See TracChangeset
for help on using the changeset viewer.