Changeset 756:5127beea4a3a for admin/posts.php
- Timestamp:
- 11/10/11 16:12:01 (14 years ago)
- Branch:
- formfilters
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/posts.php
r755 r756 138 138 ->addFilter(new comboFilter( 139 139 'users',__('Author'), __('Author'), 'user_id', $users_combo)) 140 ->addFilter(new c omboFilter(140 ->addFilter(new categoryFilter( 141 141 'category',__('Category'), __('Category'), 'cat_id', $categories_combo)) 142 142 ->addFilter(new comboFilter( … … 147 147 'lang',__('Lang'), __('Lang'), 'post_lang', $lang_combo)) 148 148 ->addFilter(new monthComboFilter( 149 'month',__('Month'),__('Month'), 'post_month', $dt_m_combo,array('singleval' => 1))); 149 'month',__('Month'),__('Month'), 'post_month', $dt_m_combo,array('singleval' => 1))) 150 ->addFilter(new textFilter( 151 'search',__('Contains'),__('The entry contains'), 'search',20,255)); 150 152 151 153 $core->callBehavior('adminPostsFilters',$filterSet); … … 165 167 } else { 166 168 $page_title = __('Entries'); 169 $filters_info = ''; 167 170 } 168 171 $post_list->setItems($posts,$counter->f(0));
Note: See TracChangeset
for help on using the changeset viewer.