joomla中的状态变量是什么

时间:2015-10-30 16:02:29

标签: joomla

Joomla中状态变量的用法是什么?以及此代码中$model->setState的用法是什么(代码来自Joomla&#39的mod_articles_popular模块)?

$model = JModelLegacy::getInstance('Articles', 'ContentModel', array('ignore_request' => true));
// Set application parameters in model
$app = JFactory::getApplication();
$appParams = $app->getParams();
$model->setState('params', $appParams); 
// Set the filters based on the module params
$model->setState('list.start', 0);

1 个答案:

答案 0 :(得分:1)

将setState方法转换为用于过滤数据的模型,可以在here上阅读详细信息。函数语法和参数列表可以是here

此方法的主要目的是使用参数过滤结果集。在你的情况下,它的模块参数可以找到一个示例帖子here

希望现在清楚。