Changeset 1882:433e8676f9ac for plugins/pages/list.php
- Timestamp:
- 08/19/13 18:58:08 (12 years ago)
- Branch:
- Ticket #1181
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pages/list.php
r1464 r1882 31 31 32 32 $html_block = 33 '<table class=" clear"><tr>'.34 '<th colspan=" 2">'.__('Title').'</th>'.33 '<table class="maximal dragable"><thead><tr>'. 34 '<th colspan="3">'.__('Title').'</th>'. 35 35 '<th>'.__('Date').'</th>'. 36 36 '<th>'.__('Author').'</th>'. … … 38 38 '<th>'.__('Trackbacks').'</th>'. 39 39 '<th>'.__('Status').'</th>'. 40 '</tr> %s</table>';40 '</tr></thead><tbody id="pageslist">%s</tbody></table>'; 41 41 42 42 if ($enclose_block) { … … 50 50 echo $blocks[0]; 51 51 52 $count = 0; 52 53 while ($this->rs->fetch()) 53 54 { 54 echo $this->postLine(); 55 echo $this->postLine($count); 56 $count ++; 55 57 } 56 58 … … 61 63 } 62 64 63 private function postLine( )65 private function postLine($count) 64 66 { 65 67 $img = '<img alt="%1$s" title="%1$s" src="images/%2$s" />'; … … 100 102 101 103 $res .= 104 '<td class="nowrap handle minimal">'.form::field(array('order['.$this->rs->post_id.']'),2,3,$count+1,'position','',false,'title="'.sprintf(__('position of %s'),html::escapeHTML($this->rs->post_title)).'"').'</td>'. 102 105 '<td class="nowrap">'. 103 106 form::checkbox(array('entries[]'),$this->rs->post_id,'','','',!$this->rs->isEditable(),'title="'.__('Select this page').'"').'</td>'. … … 145 148 if ($core->auth->check('publish,contentadmin',$core->blog->id)) 146 149 { 150 $combo_action[__('Reorder')] = 'reorder'; 147 151 $combo_action[__('Publish')] = 'publish'; 148 152 $combo_action[__('Unpublish')] = 'unpublish'; … … 167 171 <head> 168 172 <title><?php echo __('Pages'); ?></title> 169 <script type="text/javascript" src="js/_posts_list.js"></script> 173 <?php 174 echo dcPage::jsLoad('js/jquery/jquery-ui.custom.js'). 175 dcPage::jsLoad('index.php?pf=pages/list.js'); 176 ?> 170 177 <script type="text/javascript"> 171 178 //<![CDATA[
Note: See TracChangeset
for help on using the changeset viewer.