dao->select('module, action')->from(TABLE_WORKFLOWACTION) ->where('status')->eq('enable') ->andWhere('action')->in('link,report') ->andWhere('role')->ne('buildin') ->beginIF(!empty($this->config->vision))->andWhere('vision')->eq($this->config->vision)->fi() ->fetchAll(); foreach($actions as $action) $this->config->index->oldPages[] = $action->module . '-' . strtolower($action->action); return parent::index($open); } }