示例#1
0
 public function display($cachable = false, $urlparams = false)
 {
     $option = JRequest::getCmd('option');
     $mainframe = JFactory::getApplication();
     $document = JFactory::getDocument();
     $model = $this->getModel('projectposition');
     $viewType = $document->getType();
     $view = $this->getView('projectposition', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     $projectws = $this->getModel('project');
     $projectws->setId($mainframe->getUserState($option . 'project', 0));
     $view->setModel($projectws);
     $task = $this->getTask();
     switch ($task) {
         case 'add':
             JRequest::setVar('layout', 'form');
             JRequest::setVar('view', 'projectposition');
             JRequest::setVar('edit', false);
             $model = $this->getModel('projectposition');
             $model->checkout();
             break;
         case 'edit':
             JRequest::setVar('layout', 'form');
             JRequest::setVar('view', 'projectposition');
             JRequest::setVar('edit', true);
             // Checkout the project
             $model = $this->getModel('projectposition');
             $model->checkout();
             break;
     }
     parent::display();
 }
 function display()
 {
     $option = JRequest::getCmd('option');
     $mainframe = JFactory::getApplication();
     $document = JFactory::getDocument();
     switch ($this->getTask()) {
         case 'add':
             $model = $this->getModel('division');
             $viewType = $document->getType();
             $view = $this->getView('division', $viewType);
             $view->setModel($model, true);
             // true is for the default model;
             $projectws = $this->getModel('project');
             $projectws->set('name', 'projectws');
             $projectws->setId($mainframe->getUserState($option . 'project', 0));
             $view->setModel($projectws);
             JRequest::setVar('hidemainmenu', 0);
             JRequest::setVar('layout', 'form');
             JRequest::setVar('view', 'division');
             JRequest::setVar('edit', false);
             // Checkout the project
             $model->checkout();
             break;
         case 'edit':
             $model = $this->getModel('division');
             $viewType = $document->getType();
             $view = $this->getView('division', $viewType);
             $view->setModel($model, true);
             // true is for the default model;
             $projectws = $this->getModel('project');
             $projectws->set('name', 'projectws');
             $projectws->setId($mainframe->getUserState($option . 'project', 0));
             $view->setModel($projectws);
             JRequest::setVar('hidemainmenu', 0);
             JRequest::setVar('layout', 'form');
             JRequest::setVar('view', 'division');
             JRequest::setVar('edit', true);
             // Checkout the project
             $model->checkout();
             break;
         default:
             $model = $this->getModel('divisions');
             $viewType = $document->getType();
             $view = $this->getView('divisions', $viewType);
             $view->setModel($model, true);
             // true is for the default model;
             $projectws = $this->getModel('project');
             $projectws->set('name', 'projectws');
             $projectws->setId($mainframe->getUserState($option . 'project', 0));
             $view->setModel($projectws);
             break;
     }
     parent::display();
 }
示例#3
0
 public function display($cachable = false, $urlparams = false)
 {
     $document = JFactory::getDocument();
     $model = $this->getModel('updates');
     $viewType = $document->getType();
     $view = $this->getView('updates', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     $view->setLayout('updates');
     parent::display();
 }
 function select()
 {
     $mainframe =& JFactory::getApplication();
     $selectType = JRequest::getVar('type', 0, 'get', 'int');
     $recordID = JRequest::getVar('id', 0, 'get', 'int');
     $mainframe->setUserState('com_joomleague' . 'selectType', $selectType);
     $mainframe->setUserState('com_joomleague' . 'recordID', $recordID);
     JRequest::setVar('hidemainmenu', 1);
     JRequest::setVar('layout', 'selectpage');
     JRequest::setVar('view', 'jlextindividualsportringen');
     parent::display();
 }
示例#5
0
 public function select()
 {
     $app = JFactory::getApplication();
     $selectType = JRequest::getVar('type', 0, 'get', 'int');
     $recordID = JRequest::getVar('id', 0, 'get', 'int');
     $app->setUserState('com_joomleague' . 'selectType', $selectType);
     $app->setUserState('com_joomleague' . 'recordID', $recordID);
     JRequest::setVar('hidemainmenu', 1);
     JRequest::setVar('layout', 'selectpage');
     JRequest::setVar('view', 'jlxmlimports');
     parent::display();
 }
 function display()
 {
     //$mainframe		=& JFactory::getApplication();
     //$option			= 'com_joomleague';
     $option = JRequest::getCmd('option');
     $mainframe = JFactory::getApplication();
     $document = JFactory::getDocument();
     $mainframe->enqueueMessage(JText::_('PredictionTemplate Task -> ' . $this->getTask()), '');
     $model = $this->getModel('predictiontemplates');
     $viewType = $document->getType();
     $view = $this->getView('predictiontemplates', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     $prediction_id1 = JRequest::getVar('prediction_id', '-1', '', 'int');
     //echo 'CPT-A' . $prediction_id1 . 'CPT-A<br />';
     $prediction_id2 = (int) $mainframe->getUserState('com_joomleague' . 'prediction_id');
     //echo 'CPT-B' . $prediction_id2 . 'CPT-B<br />';
     if ($prediction_id1 > -1) {
         $mainframe->setUserState('com_joomleague' . 'prediction_id', (int) $prediction_id1);
     } else {
         $mainframe->setUserState('com_joomleague' . 'prediction_id', (int) $prediction_id2);
     }
     $prediction_id = (int) $mainframe->getUserState('com_joomleague' . 'prediction_id');
     //echo 'CPT-C' . $prediction_id . 'CPT-C<br />';
     switch ($this->getTask()) {
         case 'add':
             JRequest::setVar('hidemainmenu', 0);
             JRequest::setVar('layout', 'form');
             JRequest::setVar('view', 'predictiontemplate');
             JRequest::setVar('edit', false);
             // Checkout the project
             $model = $this->getModel('predictiontemplate');
             //$model->checkout();
             break;
         case 'edit':
             $model = $this->getModel('predictiontemplate');
             $viewType = $document->getType();
             $view = $this->getView('predictiontemplate', $viewType);
             $view->setModel($model, true);
             // true is for the default model;
             //JRequest::setVar( 'hidemainmenu',	0 );
             JRequest::setVar('layout', 'form');
             JRequest::setVar('view', 'predictiontemplate');
             JRequest::setVar('edit', true);
             //$model = $this->getModel( 'predictiontemplate' );
             break;
     }
     parent::display();
 }
 function display()
 {
     $option = JRequest::getCmd('option');
     $mainframe = JFactory::getApplication();
     $document = JFactory::getDocument();
     $model = $this->getModel('treetonodes');
     $viewType = $document->getType();
     $view = $this->getView('treetonodes', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     $projectws = $this->getModel('project');
     $projectws->set('name', 'projectws');
     $projectws->setId($mainframe->getUserState($option . 'project', 0));
     $view->setModel($projectws);
     if ($tid = JRequest::getVar('tid', null, '', 'array')) {
         $mainframe->setUserState($option . 'treeto_id', $tid[0]);
     }
     $treetows = $this->getModel('treeto');
     $treetows->set('name', 'treetows');
     $treetows->setId($mainframe->getUserState($option . 'treeto_id'));
     $view->setModel($treetows);
     switch ($this->getTask()) {
         case 'edit':
             $model = $this->getModel('treetonode');
             $viewType = $document->getType();
             $view = $this->getView('treetonode', $viewType);
             $view->setModel($model, true);
             // true is for the default model;
             $projectws = $this->getModel('project');
             $projectws->set('name', 'projectws');
             $projectws->setId($mainframe->getUserState($option . 'project', 0));
             $view->setModel($projectws);
             JRequest::setVar('hidemainmenu', 0);
             JRequest::setVar('layout', 'form');
             JRequest::setVar('view', 'treetonode');
             JRequest::setVar('edit', true);
             $model = $this->getModel('treetonode');
             $model->checkout();
             break;
     }
     parent::display();
 }
 function display()
 {
     global $mainframe, $option;
     $document =& JFactory::getDocument();
     $mainframe =& JFactory::getApplication();
     //$model		= $this->getModel ( 'modeljlextlmoimport' );
     $this->setMessage(JText::_('project selected'));
     switch ($this->getTask()) {
         case 'edit':
             JRequest::setVar('hidemainmenu', 0);
             JRequest::setVar('layout', 'form');
             JRequest::setVar('view', 'jlxmlimports');
             JRequest::setVar('edit', true);
             break;
             // 			case 'insert':
             // 				JRequest::setVar('hidemainmenu',0);
             // 				JRequest::setVar('layout','info');
             //         JRequest::setVar('view','jlxmlimports');
             // 				//JRequest::setVar('view','jlextlmoimport');
             // 				JRequest::setVar('edit',true);
             // 				break;
     }
     parent::display();
 }
示例#9
0
 public function import()
 {
     JRequest::setVar('view', 'import');
     JRequest::setVar('table', 'eventtype');
     parent::display();
 }
示例#10
0
 public function editlist()
 {
     $option = $this->input->getCmd('option');
     $app = JFactory::getApplication();
     $document = JFactory::getDocument();
     $model = $this->getModel('teamplayers');
     $viewType = $document->getType();
     $view = $this->getView('teamplayers', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     $mdlProject = $this->getModel('project');
     $mdlProject->setId($app->getUserState($option . 'project', 0));
     $view->setModel($mdlProject);
     $mdlProjectteam = $this->getModel('projectteam');
     $mdlProjectteam->setId($app->getUserState($option . 'project_team_id', 0));
     $view->setModel($mdlProjectteam);
     JRequest::setVar('hidemainmenu', $this->input->getInt('hidemainmenu', 1));
     JRequest::setVar('layout', 'editlist');
     JRequest::setVar('view', 'teamplayers');
     JRequest::setVar('edit', true);
     parent::display($cachable, $urlparams);
 }
示例#11
0
 /**
  * display the populate form
  *
  */
 public function populate()
 {
     $option = JRequest::getCmd('option');
     $app = JFactory::getApplication();
     $document = JFactory::getDocument();
     $model = $this->getModel('round');
     $viewType = $document->getType();
     $view = $this->getView('rounds', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     $projectws = $this->getModel('project');
     $projectws->setId($app->getUserState($option . 'project', 0));
     $view->setModel($projectws);
     JRequest::setVar('hidemainmenu', 0);
     JRequest::setVar('view', 'rounds');
     JRequest::setVar('layout', 'populate');
     parent::display();
 }
示例#12
0
 /**
  * copy team to another project
  */
 public function copy()
 {
     $dest = JRequest::getInt('dest');
     $ptids = JRequest::getVar('ptids', array(), 'post', 'array');
     // check if this is the final step
     if (!$dest) {
         JRequest::setVar('view', 'projectteams');
         JRequest::setVar('layout', 'copy');
         return parent::display();
     }
     $msg = '';
     $type = 'message';
     $model = $this->getModel('projectteams');
     if (!$model->copy($dest, $ptids)) {
         $msg = $model->getError();
         $type = 'error';
     } else {
         $msg = JText::_('COM_JOOMLEAGUE_ADMIN_PROJECTTEAMS_COPY_SUCCESS');
     }
     $this->setRedirect('index.php?option=com_joomleague&view=projectteams&task=projectteam.display', $msg, $type);
     $this->redirect();
 }
 function edit()
 {
     JRequest::setVar('hidemainmenu', 0);
     JRequest::setVar('view', 'settings');
     parent::display();
 }
 function import()
 {
     JRequest::setVar('view', 'import');
     JRequest::setVar('table', 'jlextuserextrafield');
     parent::display();
 }
 function import()
 {
     JRequest::setVar('view', 'import');
     JRequest::setVar('table', 'associations');
     parent::display();
 }
示例#16
0
 public function editlineup()
 {
     $option = JRequest::getCmd('option');
     $app = JFactory::getApplication();
     $document = JFactory::getDocument();
     $proj = $app->getUserState($option . 'project', 0);
     $post = JRequest::get('post');
     $cid = JRequest::getVar('cid', array(), 'get', 'array');
     JArrayHelper::toInteger($cid);
     $model = $this->getModel('match');
     $viewType = $document->getType();
     $view = $this->getView('match', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     $projectws = $this->getModel('project');
     $projectws->setId($app->getUserState($option . 'project', 0));
     $view->setModel($projectws);
     JRequest::setVar('hidemainmenu', 1);
     JRequest::setVar('layout', 'editlineup');
     JRequest::setVar('view', 'match');
     JRequest::setVar('edit', true);
     // Checkout the match
     $model->checkout();
     parent::display();
 }
 function import()
 {
     JRequest::setVar('view', 'import');
     JRequest::setVar('table', 'jlextcountry');
     parent::display();
 }
 function genNode()
 {
     $option = JRequest::getCmd('option');
     $mainframe = JFactory::getApplication();
     $document = JFactory::getDocument();
     $proj = $mainframe->getUserState($option . 'project', 0);
     $post = JRequest::get('post');
     $cid = JRequest::getVar('cid', array(), 'get', 'array');
     JArrayHelper::toInteger($cid);
     $model = $this->getModel('treeto');
     $viewType = $document->getType();
     $view = $this->getView('treeto', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     $projectws = $this->getModel('project');
     $projectws->set('name', 'projectws');
     $projectws->setId($mainframe->getUserState($option . 'project', 0));
     $view->setModel($projectws);
     JRequest::setVar('hidemainmenu', 0);
     JRequest::setVar('layout', 'gennode');
     JRequest::setVar('view', 'treeto');
     JRequest::setVar('edit', true);
     // Checkout the project
     //$model=$this->getModel('treeto');
     $model->checkout();
     parent::display();
 }
 function display()
 {
     parent::display();
 }
 function import()
 {
     JRequest::setVar('view', 'import');
     JRequest::setVar('table', 'position_ringen');
     parent::display();
 }
示例#21
0
 public function editlist()
 {
     $option = $this->input->getCmd('option');
     $app = JFactory::getApplication();
     $document = JFactory::getDocument();
     $model = $this->getModel('treetomatchs');
     $viewType = $document->getType();
     $view = $this->getView('treetomatchs', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     $projectws = $this->getModel('project');
     $projectws->setId($app->getUserState($option . 'project', 0));
     $view->setModel($projectws);
     if ($nid = JRequest::getVar('nid', null, '', 'array')) {
         $app->setUserState($option . 'node_id', $nid[0]);
     }
     if ($tid = JRequest::getVar('tid', null, '', 'array')) {
         $app->setUserState($option . 'treeto_id', $tid[0]);
     }
     $nodews = $this->getModel('treetonode');
     $nodews->setId($app->getUserState($option . 'node_id'));
     $view->setModel($nodews);
     JRequest::setVar('hidemainmenu', 0);
     JRequest::setVar('layout', 'editlist');
     JRequest::setVar('view', 'treetomatchs');
     JRequest::setVar('edit', true);
     // Checkout the project
     //	$model = $this->getModel('treetomatchs');
     parent::display();
 }
 function import()
 {
     JRequest::setVar('view', 'import');
     JRequest::setVar('table', 'playground');
     parent::display();
 }
 function pressebericht()
 {
     JRequest::setVar('hidemainmenu', 1);
     JRequest::setVar('layout', 'pressebericht');
     JRequest::setVar('view', 'match');
     JRequest::setVar('edit', true);
     parent::display();
 }
 function jlexteditsinglematches()
 {
     $option = JRequest::getCmd('option');
     $document = JFactory::getDocument();
     $mainframe = JFactory::getApplication();
     $model = $this->getModel('jlextindividualsport');
     $viewType = $document->getType();
     $view = $this->getView('jlextindividualsport', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     JRequest::setVar('view', 'jlextindividualsport');
     JRequest::setVar('hidemainmenu', 1);
     parent::display();
 }
示例#25
0
 public function display($cachable = false, $urlparams = false)
 {
     parent::display();
 }
示例#26
0
 public function import()
 {
     JRequest::setVar('view', 'import');
     JRequest::setVar('table', 'statistic');
     parent::display();
 }
 function editlist()
 {
     $option = JRequest::getCmd('option');
     $mainframe = JFactory::getApplication();
     $document = JFactory::getDocument();
     $model = $this->getModel('projectreferees');
     $viewType = $document->getType();
     $view = $this->getView('projectreferees', $viewType);
     $view->setModel($model, true);
     // true is for the default model;
     $projectws = $this->getModel('project');
     $projectws->set('name', 'projectws');
     $projectws->setId($mainframe->getUserState($option . 'project', 0));
     $view->setModel($projectws);
     $teamws->setId($mainframe->getUserState($option . 'team', 0));
     $view->setModel($teamws);
     JRequest::setVar('hidemainmenu', 1);
     JRequest::setVar('layout', 'editlist');
     JRequest::setVar('view', 'projectreferees');
     JRequest::setVar('edit', true);
     parent::display();
 }