我使用组件的管理文件夹中的 config.xml 创建了一个带有一些配置字段的 J2.5 组件。
如何以编程方式在配置中设置参数?
我已经尝试了下面的代码,但它显然没有将结果保存到数据库:
$params = & JComponentHelper::getParams('com_mycomponent');
$params->set('myvar', $the_value);
谁能展示一些如何实现这一目标的例子?
最安全的方法是包含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();
请注意我如何将参数转换为字符串(在构建查询时),它将 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();
解决方案在这里...
您可以在 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;
}