Changeset 2163:d41b59b0ae2e for inc/admin/lib.moduleslist.php
- Timestamp:
- 09/30/13 11:02:47 (12 years ago)
- Branch:
- dcRepo
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/lib.moduleslist.php
r2158 r2163 117 117 public function displaySearchForm() 118 118 { 119 if (empty($this->modules)) { 119 $query = $this->getSearchQuery(); 120 121 if (empty($this->modules) && $query === null) { 120 122 return $this; 121 123 } 122 123 $query = $this->getSearchQuery();124 124 125 125 echo … … 330 330 '<table id="'.html::escapeHTML($this->list_id).'" class="modules'.(in_array('expander', $cols) ? ' expandable' : '').'">'. 331 331 '<caption class="hidden">'.html::escapeHTML(__('Modules list')).'</caption><tr>'; 332 /* 333 if (in_array('expander', $cols)) { 334 echo 335 '<th class="minimal"></th>'; 336 } 337 //*/ 338 /* 339 if ($this->getSearchQuery() !== null) { 340 echo 341 '<th class="nowrap">'.__('Accuracy').'</th>'; 342 } 343 //*/ 332 344 333 if (in_array('name', $cols)) { 345 334 echo … … 396 385 397 386 echo 398 '<tr class="line" id="'.html::escapeHTML($this->list_id).'_m_'.html::escapeHTML($id).'" title="plop">'; 399 /* 400 if (in_array('expander', $cols)) { 401 echo 402 '<td class="minimal expander" title="'.html::escapeHTML($id).'"></td>'; 403 } 404 //*/ 405 /* 406 if ($this->getSearchQuery() !== null) { 407 echo 408 '<td class="nowrap count">'.$module['accuracy'].'</td>'; 409 } 410 //*/ 387 '<tr class="line" id="'.html::escapeHTML($this->list_id).'_m_'.html::escapeHTML($id).'" title="'. 388 sprintf(__('Configure module "%"'), html::escapeHTML($module['name'])).'">'; 389 411 390 if (in_array('icon', $cols)) { 412 391 echo
Note: See TracChangeset
for help on using the changeset viewer.