Backend\Core\Engine\Base\ActionIndex::execute PHP Method

execute() public method

Execute the current action This method will be overwritten in most of the actions, but still be called to add general stuff
public execute ( )
    public function execute()
    {
        parent::execute();
    }

Usage Example

 /**
  * Execute the action
  */
 public function execute()
 {
     parent::execute();
     $this->loadDataGrid();
     $this->parse();
     $this->display();
 }
All Usage Examples Of Backend\Core\Engine\Base\ActionIndex::execute
ActionIndex