function __construct() { parent::__construct(); // Register Extra tasks $this->registerTask('edit', 'display'); $this->registerTask('apply', 'save'); }
public function __construct() { parent::__construct(); // Register Extra tasks $this->registerTask('add', 'edit'); $this->registerTask('apply', 'save'); }
function __construct() { parent::__construct(); $this->registerTask('repair', 'repair'); $this->registerTask('optimize', 'optimize'); $this->registerTask('picturepath', 'picturepath'); $this->registerTask('updatetemplatemasters', 'updatetemplatemasters'); }
public function __construct($config = array()) { parent::__construct($config); // Register Extra tasks $this->registerTask('add', 'display'); $this->registerTask('edit', 'display'); $this->registerTask('apply', 'save'); }
public function __construct() { // Get the document object. $document = JFactory::getDocument(); // Set the MIME type for JSON output. $document->setMimeEncoding('application/json'); parent::__construct(); }
function __construct() { parent::__construct(); // Register Extra tasks $this->registerTask('edit', 'display'); $this->registerTask('insert', 'display'); $this->registerTask('selectpage', 'display'); }
public function __construct() { parent::__construct(); $model = $this->getModel('jlxmlexport'); $export = $model->exportData(); if ($export) { echo $export; } }
public function __construct() { parent::__construct(); // Register Extra tasks $this->registerTask('add', 'display'); $this->registerTask('edit', 'display'); $this->registerTask('apply', 'save'); $this->registerTask('fulldelete', 'remove'); }
function __construct() { parent::__construct(); //$this->registerTask( 'save' , 'Save' ); //$this->registerTask( 'apply' , 'Apply' ); //$this->registerTask( 'cancel' , 'Close' ); $this->registerTask('edit', 'display'); $this->registerTask('insert', 'display'); $this->registerTask('selectpage', 'display'); }
function __construct() { parent::__construct(); // Register Extra tasks $this->registerTask('add', 'display'); $this->registerTask('edit', 'display'); $this->registerTask('apply', 'save'); $this->registerTask('apply_project_settings', 'save_project_settings'); $this->registerTask('copy', 'copysave'); }
function __construct() { //$post = JRequest::get('post'); // Register Extra tasks //$this->registerTask( 'add', 'display' ); //$this->registerTask( 'edit', 'display' ); //$this->registerTask( 'apply', 'save' ); //$this->registerTask( 'copy', 'copysave' ); //$this->registerTask( 'apply', 'savepredictiongame' ); parent::__construct(); }
function __construct() { parent::__construct(); //$this->registerTask( 'save' , 'Save' ); $this->registerTask('update', 'display'); $this->registerTask('cancel', 'display'); $this->registerTask('edit', 'display'); $this->registerTask('insert', 'display'); $this->registerTask('insertplayer', 'display'); $this->registerTask('insertmatch', 'display'); $this->registerTask('selectpage', 'display'); }
public function __construct() { parent::__construct(); $jinput = JFactory::getApplication()->input; $task = $jinput->getCmd('task'); if ($task == 'exporttablecsv') { $this->registerTask($task, 'exportTableCsv'); } if ($task == 'exporttablesql') { $this->registerTask($task, 'exportTableSql'); } }
public function __construct() { parent::__construct(); // Register Extra tasks $this->registerTask('searchplayer', 'searchPlayer'); $this->registerTask('searchstaff', 'searchStaff'); $this->registerTask('searchreferee', 'searchReferee'); $this->registerTask('searchteam', 'searchTeam'); $this->registerTask('addplayer', 'addPlayer'); $this->registerTask('addstaff', 'addstaff'); $this->registerTask('addreferee', 'addReferee'); $this->registerTask('addteam', 'addTeam'); }
function __construct() { $mainframe = JFactory::getApplication(); $option = JRequest::getCmd('option'); parent::__construct(); $pid = JRequest::getVar('pid', array(0), '', 'array'); if ($pid[0]) { $mainframe->setUserState($option . 'project', (int) $pid[0]); } // Register Extra tasks $this->registerTask('add', 'edit'); $this->registerTask('apply', 'save'); }
/** * Constructor */ public function __construct() { parent::__construct(); // Register Extra tasks $this->registerTask('csvpersonimport', 'dispatch'); $this->registerTask('csvseasonimport', 'dispatch'); $this->registerTask('csvleagueimport', 'dispatch'); $this->registerTask('csvprojectimport', 'dispatch'); $this->registerTask('csvclubimport', 'dispatch'); $this->registerTask('csvteamimport', 'dispatch'); $this->registerTask('csvsports_typeimport', 'dispatch'); $this->registerTask('csveventtypeimport', 'dispatch'); $this->registerTask('csvpositionimport', 'dispatch'); $this->registerTask('csvplaygroundimport', 'dispatch'); }
function __construct() { parent::__construct(); }
public function __construct() { parent::__construct(); $this->registerTask('repair', 'repair'); $this->registerTask('optimize', 'optimize'); }
public function __construct() { // Register Extra tasks parent::__construct(); }
/** * Constructor * * @since 0.9 */ function __construct() { parent::__construct(); // Register Extra task }