调用joomla的条件模型

时间:2013-04-16 09:27:23

标签: php joomla

如何在被调用的布局上激活joomla模型。我有以下网址结构

/index.php?option=com_mycomponent&view=my_view&layout=edit&id=3

如果应该调用layout=edit模型

2 个答案:

答案 0 :(得分:1)

检查视图中的布局:

if (JFactory::getApplication()->input->getWord('layout') == 'edit')
{
  // call your model here
}

Retrieving_request_data_using_JInput

答案 1 :(得分:0)

你可以这样做:

/index.php?option=com_mycomponent&task=my_view.edit&id=3