我在组件的admin文件夹中使用config.xml创建了一个带有一些配置字段的J2.5组件。
如何以编程方式在配置中设置参数?
我已经尝试了下面的代码,但显然没有将结果保存到DB:
$params = & JComponentHelper::getParams('com_mycomponent');
$params->set('myvar', $the_value);
有人可以展示一些如何实现这个目标的例子吗?
答案 0 :(得分:11)
最安全的方法是包含com_config/models/component.php
并使用它来验证和保存参数。但是,如果你能以某种方式自己验证数据参数,我会坚持以下(更简单的解决方案):
// Get the params and set the new values
$params = JComponentHelper::getParams('com_mycomponent');
$params->set('myvar', $the_value);
// Get a new database query instance
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// Build the query
$query->update('#__extensions AS a');
$query->set('a.params = ' . $db->quote((string)$params));
$query->where('a.element = "com_mycomponent"');
// Execute the query
$db->setQuery($query);
$db->query();
注意我如何将params转换为字符串(在构建查询时),它会将JRegistry对象转换为JSON格式的字符串。
如果遇到任何缓存问题,您可能需要在编辑参数后运行以下命令:
从模特:
$this->cleanCache('_system');
或者,其他地方:
$conf = JFactory::getConfig();
$options = array(
'defaultgroup' => '_system',
'cachebase' => $conf->get('cache_path', JPATH_SITE . '/cache')
);
$cache = JCache::getInstance('callback', $options);
$cache->clean();
答案 1 :(得分:1)
解决方案就在这里......
您可以在Joomla 2.5+中替换
// check for error
if (!$table->check()) {
$this->setError('lastcreatedate: check: ' . $table->getError());
return false;
}
if (!$table->store()) {
$this->setError('lastcreatedate: store: ' . $table->getError());
return false;
}
与
if (!$table->save()) {
$this->setError('Save Error: ' . $table->getError());
return false;
}