Changeset 1903:931d1495a1c7 for inc/admin/actions/class.dcaction.php
- Timestamp:
- 09/16/13 10:11:39 (12 years ago)
- Branch:
- actionsreloaded
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/actions/class.dcaction.php
r1807 r1903 52 52 * @return mixed Value. 53 53 */ 54 public function __construct($core,$uri ) {54 public function __construct($core,$uri,$redirect_args=array()) { 55 55 $this->core = $core; 56 56 $this->actions = new ArrayObject(); 57 57 $this->combo = array(); 58 58 $this->uri = $uri; 59 $this->redir_args = array();59 $this->redir_args = $redirect_args; 60 60 $this->redirect_fields = array(); 61 61 $this->action = ''; 62 62 $this->cb_title = __('Title'); 63 $this->entries = array(); 63 64 $this->from = new ArrayObject($_POST); 64 65 }
Note: See TracChangeset
for help on using the changeset viewer.