Situation:
Have a List of events during a Soccer saison. If I choose the Saison from a list, I'll get another list with all assigned events to that saison.
the List of Events during a Saison is called by:
com_mycomponent/view=eventlists&saisonid=2011
This will show me a list with all events assigned to the saison 2011
Now I'd like to create a new event for saison 2011.
Add button will call: eventlist.add
MyComponentControllerEventList extends JControllerForm
during the add operation I'd like to pass the saison (2011) somehow to the form.
Model contains:
public function getTable($type = 'EventList', $prefix = 'MyComponentTable', $config = array())
{
return JTable::getInstance($type, $prefix, $config);
}
public function getForm($data = array(), $loadData = true)
{
// Get the form.
$form = $this->loadForm('com_mycomponent.eventlist', 'eventlist', array('control' => 'jform', 'load_data' => $loadData));
if (empty($form))
{
return false;
}
return $form;
}
protected function loadFormData()
{
// Check the session for previously entered form data.
$data = JFactory::getApplication()->getUserState('com_mycomponent.edit.eventlist.data', array());
if (empty($data)){
// generate an empty item
$data = $this->getItem();
}
return $data;
}
So it's straight forward.
The View is also kind of default.
public function display($tpl = null)
{
// get the Data
$form = $this->get('Form');
$item = $this->get('Item');
// Check for errors.
if (count($errors = $this->get('Errors')))
{
JError::raiseError(500, implode('<br />', $errors));
return false;
}
// Assign the Data
$this->form = $form;
$this->item = $item;
// Display the template
parent::display($tpl);
}
Any thought's on this?
Thanks