exec = new Executive(); $this->filters = array(); $this->actions = array(); $this->registerFilterChain(); $this->registerActionChain(); } /** * remove redundant actions */ function registerActionChain() { $this->actions['adapter'] = 'adapterAction'; // we are not using class files, and security checking is done in drupal //$this->actions['class'] = 'classLoaderAction'; //$this->actions['security'] = 'securityAction'; $this->actions['exec'] = 'executionAction'; //$this->actions['ws'] = 'webServiceAction'; } }