Changeset 2126:ae28a097d611 for plugins/pages/class.listpage.php
- Timestamp:
- 09/28/13 09:25:57 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pages/class.listpage.php
r2055 r2126 33 33 '<div class="table-outer">'. 34 34 '<table class="maximal dragable"><thead><tr>'. 35 '<th colspan="3" >'.__('Title').'</th>'.36 '<th >'.__('Date').'</th>'.37 '<th >'.__('Author').'</th>'.38 '<th >'.__('Comments').'</th>'.39 '<th >'.__('Trackbacks').'</th>'.40 '<th >'.__('Status').'</th>'.35 '<th colspan="3" scope="col" class="first">'.__('Title').'</th>'. 36 '<th scope="col">'.__('Date').'</th>'. 37 '<th scope="col">'.__('Author').'</th>'. 38 '<th scope="col"><img src="images/comments.png" alt="" /><span class="hidden">'.__('Comments').'</span></th>'. 39 '<th scope="col"><img src="images/trackbacks.png" alt="" /><span class="hidden">'.__('Trackbacks').'</span></th>'. 40 '<th scope="col">'.__('Status').'</th>'. 41 41 '</tr></thead><tbody id="pageslist">%s</tbody></table></div>'; 42 42 … … 106 106 '<td class="nowrap">'. 107 107 form::checkbox(array('entries[]'),$this->rs->post_id,$checked,'','',!$this->rs->isEditable(),'title="'.__('Select this page').'"').'</td>'. 108 '<td class="maximal" ><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'">'.108 '<td class="maximal" scope="row"><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'">'. 109 109 html::escapeHTML($this->rs->post_title).'</a></td>'. 110 '<td class="nowrap">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->post_dt).'</td>'. 111 110 '<td class="nowrap">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->post_dt).'</td>'. 112 111 '<td class="nowrap">'.$this->rs->user_id.'</td>'. 113 '<td class="nowrap ">'.$this->rs->nb_comment.'</td>'.114 '<td class="nowrap ">'.$this->rs->nb_trackback.'</td>'.112 '<td class="nowrap count">'.$this->rs->nb_comment.'</td>'. 113 '<td class="nowrap count">'.$this->rs->nb_trackback.'</td>'. 115 114 '<td class="nowrap status">'.$img_status.' '.$selected.' '.$protected.' '.$attach.'</td>'. 116 115 '</tr>';
Note: See TracChangeset
for help on using the changeset viewer.