Dotclear


Ignore:
Timestamp:
03/08/13 15:37:34 (13 years ago)
Author:
Dsls <dsls@…>
Branch:
twig
Message:

Oops, I did it again (c).

Fist draft of merge from formfilters to dctwig. lists need to be broken up too.

From now all post lists are broken.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • admin/posts.php

    r796 r1147  
    1212 
    1313require dirname(__FILE__).'/../inc/admin/prepend.php'; 
    14  
     14global $_ctx; 
    1515dcPage::check('usage,contentadmin'); 
    1616 
     
    4848     # Filter form we'll put in html_block 
    4949     $users_combo = $categories_combo = array(); 
    50      $users_combo['-'] = $categories_combo['-'] = ''; 
    5150     while ($users->fetch()) 
    5251     { 
     
    6160     } 
    6261      
    63      $categories_combo[__('None')] = 'NULL'; 
     62 
     63# Getting categories 
     64$categories_combo = array(); 
     65try { 
     66     $categories = $core->blog->getCategories(array('post_type'=>'post')); 
    6467     while ($categories->fetch()) { 
    65           $categories_combo[str_repeat('&nbsp;&nbsp;',$categories->level-1).($categories->level-1 == 0 ? '' : '&bull; '). 
    66                html::escapeHTML($categories->cat_title). 
    67                ' ('.$categories->nb_post.')'] = $categories->cat_id; 
     68          $categories_combo[$categories->cat_id] =  
     69               str_repeat('&nbsp;&nbsp;',$categories->level-1). 
     70               ($categories->level-1 == 0 ? '' : '&bull; '). 
     71               html::escapeHTML($categories->cat_title); 
    6872     } 
    69       
     73} catch (Exception $e) { } 
    7074     $status_combo = array( 
    71      '-' => '' 
    7275     ); 
    7376     foreach ($core->blog->getAllPostStatus() as $k => $v) { 
    74           $status_combo[$v] = (string) $k; 
     77          $status_combo[(string) $k] = (string)$v; 
    7578     } 
    7679      
    7780     $selected_combo = array( 
    78      '-' => '', 
    79      __('selected') => '1', 
    80      __('not selected') => '0' 
     81     '1' => __('is selected'), 
     82     '0' => __('is not selected') 
    8183     ); 
    8284      
    8385     # Months array 
    84      $dt_m_combo['-'] = ''; 
    8586     while ($dates->fetch()) { 
    86           $dt_m_combo[dt::str('%B %Y',$dates->ts())] = $dates->year().$dates->month(); 
     87          $dt_m_combo[$dates->year().$dates->month()] = dt::str('%B %Y',$dates->ts()); 
    8788     } 
    8889      
    89      $lang_combo['-'] = ''; 
    9090     while ($langs->fetch()) { 
    9191          $lang_combo[$langs->post_lang] = $langs->post_lang; 
    9292     } 
    93       
    94      $sortby_combo = array( 
    95      __('Date') => 'post_dt', 
    96      __('Title') => 'post_title', 
    97      __('Category') => 'cat_title', 
    98      __('Author') => 'user_id', 
    99      __('Status') => 'post_status', 
    100      __('Selected') => 'post_selected' 
    101      ); 
    102       
    103      $order_combo = array( 
    104      __('Descending') => 'desc', 
    105      __('Ascending') => 'asc' 
    106      ); 
    10793} 
     94$form = new dcForm($core,'post','post.php'); 
     95 
    10896 
    10997# Actions combo box 
     
    136124$core->callBehavior('adminPostsActionsCombo',array(&$combo_action)); 
    137125 
    138 /* Get posts 
    139 -------------------------------------------------------- */ 
    140 $user_id = !empty($_GET['user_id']) ?   $_GET['user_id'] : ''; 
    141 $cat_id = !empty($_GET['cat_id']) ?     $_GET['cat_id'] : ''; 
    142 $status = isset($_GET['status']) ? $_GET['status'] : ''; 
    143 $selected = isset($_GET['selected']) ?  $_GET['selected'] : ''; 
    144 $month = !empty($_GET['month']) ?       $_GET['month'] : ''; 
    145 $lang = !empty($_GET['lang']) ?         $_GET['lang'] : ''; 
    146 $sortby = !empty($_GET['sortby']) ?     $_GET['sortby'] : 'post_dt'; 
    147 $order = !empty($_GET['order']) ?       $_GET['order'] : 'desc'; 
    148126 
    149 $show_filters = false; 
    150127 
    151 $page = !empty($_GET['page']) ? (integer) $_GET['page'] : 1; 
    152 $nb_per_page =  30; 
    153  
    154 if (!empty($_GET['nb']) && (integer) $_GET['nb'] > 0) { 
    155      if ($nb_per_page != $_GET['nb']) { 
    156           $show_filters = true; 
     128class monthComboFilter extends comboFilter { 
     129     public function applyFilter($params) { 
     130          $month=$this->avalues['values'][0]; 
     131          $params['post_month'] = substr($month,4,2); 
     132          $params['post_year'] = substr($month,0,4); 
    157133     } 
    158      $nb_per_page = (integer) $_GET['nb']; 
    159134} 
    160  
    161 $params['limit'] = array((($page-1)*$nb_per_page),$nb_per_page); 
    162 $params['no_content'] = true; 
    163  
    164 # - User filter 
    165 if ($user_id !== '' && in_array($user_id,$users_combo)) { 
    166      $params['user_id'] = $user_id; 
    167      $show_filters = true; 
    168 } else { 
    169      $user_id=''; 
    170 } 
    171  
    172 # - Categories filter 
    173 if ($cat_id !== '' && in_array($cat_id,$categories_combo)) { 
    174      $params['cat_id'] = $cat_id; 
    175      $show_filters = true; 
    176 } else { 
    177      $cat_id=''; 
    178 } 
    179  
    180 # - Status filter 
    181 if ($status !== '' && in_array($status,$status_combo)) { 
    182      $params['post_status'] = $status; 
    183      $show_filters = true; 
    184 } else { 
    185      $status=''; 
    186 } 
    187  
    188 # - Selected filter 
    189 if ($selected !== '' && in_array($selected,$selected_combo)) { 
    190      $params['post_selected'] = $selected; 
    191      $show_filters = true; 
    192 } else { 
    193      $selected=''; 
    194 } 
    195  
    196 # - Month filter 
    197 if ($month !== '' && in_array($month,$dt_m_combo)) { 
    198      $params['post_month'] = substr($month,4,2); 
    199      $params['post_year'] = substr($month,0,4); 
    200      $show_filters = true; 
    201 } else { 
    202      $month=''; 
    203 } 
    204  
    205 # - Lang filter 
    206 if ($lang !== '' && in_array($lang,$lang_combo)) { 
    207      $params['post_lang'] = $lang; 
    208      $show_filters = true; 
    209 } else { 
    210      $lang=''; 
    211 } 
    212  
    213 # - Sortby and order filter 
    214 if ($sortby !== '' && in_array($sortby,$sortby_combo)) { 
    215      if ($order !== '' && in_array($order,$order_combo)) { 
    216           $params['order'] = $sortby.' '.$order; 
    217      } else { 
    218           $order='desc'; 
    219      } 
    220       
    221      if ($sortby != 'post_dt' || $order != 'desc') { 
    222           $show_filters = true; 
    223      } 
    224 } else { 
    225      $sortby='post_dt'; 
    226      $order='desc'; 
    227 } 
    228  
    229 # Get posts 
    230 try { 
    231      $posts = $core->blog->getPosts($params); 
    232      $counter = $core->blog->getPosts($params,true); 
    233      $post_list = new adminPostList($core,$posts,$counter->f(0)); 
    234 } catch (Exception $e) { 
    235      $core->error->add($e->getMessage()); 
    236 } 
    237  
    238135/* DISPLAY 
    239136-------------------------------------------------------- */ 
    240 $starting_script = dcPage::jsLoad('js/_posts_list.js'); 
    241 if (!$show_filters) { 
    242      $starting_script .= dcPage::jsLoad('js/filter-controls.js'); 
    243 } 
     137$filterSet = new dcFilterSet($core,'fposts','posts.php'); 
    244138 
    245 dcPage::open(__('Entries'),$starting_script); 
     139$filterSet 
     140     ->addFilter(new comboFilter( 
     141          'users',__('Author'), __('Author'), 'user_id', $users_combo)) 
     142     ->addFilter(new comboFilter( 
     143          'category',__('Category'), __('Category'), 'cat_id', $categories_combo)) 
     144     ->addFilter(new comboFilter( 
     145          'post_status',__('Status'), __('Status'), 'post_status', $status_combo)) 
     146     ->addFilter(new comboFilter( 
     147          'lang',__('Lang'), __('Lang'), 'post_lang', $lang_combo)) 
     148     ->addFilter(new booleanFilter( 
     149          'selected',__('Selected'), __('The post : '),'post_selected', $selected_combo)) 
     150     ->addFilter(new monthComboFilter( 
     151          'month',__('Month'),__('Month'), 'post_month', $dt_m_combo,array('singleval' => 1))) 
     152     ->addFilter(new textFilter( 
     153          'search',__('Contains'),__('The entry contains'), 'search',20,255)); 
    246154 
    247 if (!$core->error->flag()) 
    248 { 
    249      echo  
    250      '<h2>'.html::escapeHTML($core->blog->name).' &rsaquo; <span class="page-title">'.__('Entries').'</span></h2>'. 
    251      '<p class="top-add"><a class="button add" href="post.php">'.__('New entry').'</a></p>'; 
    252       
    253      if (!$show_filters) { 
    254           echo '<p><a id="filter-control" class="form-control" href="#">'. 
    255           __('Filters').'</a></p>'; 
    256      } 
    257       
    258      echo 
    259      '<form action="posts.php" method="get" id="filters-form">'. 
    260      '<fieldset><legend>'.__('Filters').'</legend>'. 
    261      '<div class="three-cols">'. 
    262      '<div class="col">'. 
    263      '<label for="user_id">'.__('Author:'). 
    264      form::combo('user_id',$users_combo,$user_id).'</label> '. 
    265      '<label for="cat_id">'.__('Category:'). 
    266      form::combo('cat_id',$categories_combo,$cat_id).'</label> '. 
    267      '<label for="status">'.__('Status:'). 
    268      form::combo('status',$status_combo,$status).'</label> '. 
    269      '</div>'. 
    270       
    271      '<div class="col">'. 
    272      '<label for="selected">'.__('Selected:'). 
    273      form::combo('selected',$selected_combo,$selected).'</label> '. 
    274      '<label for="month">'.__('Month:'). 
    275      form::combo('month',$dt_m_combo,$month).'</label> '. 
    276      '<label for="lang">'.__('Lang:'). 
    277      form::combo('lang',$lang_combo,$lang).'</label> '. 
    278      '</div>'. 
    279       
    280      '<div class="col">'. 
    281      '<p><label for="sortby">'.__('Order by:'). 
    282      form::combo('sortby',$sortby_combo,$sortby).'</label> '. 
    283      '<label for="order">'.__('Sort:'). 
    284      form::combo('order',$order_combo,$order).'</label></p>'. 
    285      '<p><label for="nb" class="classic">'.  form::field('nb',3,3,$nb_per_page).' '. 
    286      __('Entries per page').'</label></p> '. 
    287      '<p><input type="submit" value="'.__('Apply filters').'" /></p>'. 
    288      '</div>'. 
    289      '</div>'. 
    290      '<br class="clear" />'. //Opera sucks 
    291      '</fieldset>'. 
    292      '</form>'; 
    293       
    294      # Show posts 
    295      $post_list->display($page,$nb_per_page, 
    296      '<form action="posts_actions.php" method="post" id="form-entries">'. 
    297       
    298      '%s'. 
    299       
    300      '<div class="two-cols">'. 
    301      '<p class="col checkboxes-helpers"></p>'. 
    302       
    303      '<p class="col right"><label for="action" class="classic">'.__('Selected entries action:').'</label> '. 
    304      form::combo('action',$combo_action). 
    305      '<input type="submit" value="'.__('ok').'" /></p>'. 
    306      form::hidden(array('user_id'),$user_id). 
    307      form::hidden(array('cat_id'),$cat_id). 
    308      form::hidden(array('status'),$status). 
    309      form::hidden(array('selected'),$selected). 
    310      form::hidden(array('month'),$month). 
    311      form::hidden(array('lang'),$lang). 
    312      form::hidden(array('sortby'),$sortby). 
    313      form::hidden(array('order'),$order). 
    314      form::hidden(array('page'),$page). 
    315      form::hidden(array('nb'),$nb_per_page). 
    316      $core->formNonce(). 
    317      '</div>'. 
    318      '</form>' 
    319      ); 
    320 } 
     155$filterSet->setup(); 
    321156 
    322 dcPage::helpBlock('core_posts'); 
    323 dcPage::close(); 
     157$_ctx 
     158     ->fillPageTitle(__('Entries'),'posts.php'); 
     159$params=new ArrayObject(); 
     160$filterSet->applyFilters($params); 
     161$_ctx->filters = '['.print_r($params->getArrayCopy(),true).']'; 
     162 
     163$core->tpl->display('posts.html.twig'); 
     164 
     165 
    324166?> 
Note: See TracChangeset for help on using the changeset viewer.

Sites map