Changeset 1903:931d1495a1c7 for inc/admin/actions/class.dcactionposts.php
- Timestamp:
- 09/16/13 10:11:39 (12 years ago)
- Branch:
- actionsreloaded
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/actions/class.dcactionposts.php
r1808 r1903 14 14 class dcPostsActionsPage extends dcActionsPage 15 15 { 16 public function __construct($core,$uri ) {17 parent::__construct($core,$uri );16 public function __construct($core,$uri,$redirect_args=array()) { 17 parent::__construct($core,$uri,$redirect_args); 18 18 $this->redirect_fields = array('user_id','cat_id','status', 19 19 'selected','month','lang','sortby','order','page','nb'); 20 $this->loadDefaults(); 21 $core->callBehavior('adminPostsActionsPage',$core,$this); 22 } 23 24 protected function loadDefaults() { 20 25 // We could have added a behavior here, but we want default action 21 26 // to be setup first 22 dcDefaultPostActions::adminPostsActionsPage($core,$this); 23 $core->callBehavior('adminPostsActionsPage',$core,$this); 24 25 } 26 27 dcDefaultPostActions::adminPostsActionsPage($this->core,$this); 28 } 29 27 30 public function beginPage($breadcrumb='',$head='') { 28 31 dcPage::open(
Note: See TracChangeset
for help on using the changeset viewer.