本文整理汇总了PHP中CB\Config::getDCConfig方法的典型用法代码示例。如果您正苦于以下问题:PHP Config::getDCConfig方法的具体用法?PHP Config::getDCConfig怎么用?PHP Config::getDCConfig使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CB\Config
的用法示例。
在下文中一共展示了Config::getDCConfig方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getDC
/**
* get display columns for last node in active path
* @return array
*/
public function getDC()
{
$rez = array();
$p =& $this->params;
$ip =& $p['inputParams'];
if (!empty($ip['query'])) {
$dc = Config::get('search_DC');
//its a config reference, get it from config
if (!empty($dc) && is_scalar($dc)) {
$dc = Config::getDCConfig($dc);
}
$rez['data'] = $dc;
}
if (empty($rez['data'])) {
$path = Cache::get('current_path');
if (!empty($path)) {
$node = $path[sizeof($path) - 1];
$rez = $node->getDC();
}
}
if (!empty($ip['query'])) {
$rez['from'] = 'search';
}
//apply properties for default casebox columns
if (!empty($rez['data'])) {
$defaults = Config::getDefaultGridColumnConfigs();
foreach ($rez['data'] as $k => $v) {
if (!empty($defaults[$k])) {
$rez['data'][$k] = array_merge($defaults[$k], $v);
}
}
}
return $rez;
}
示例2: getDC
/**
* get displaycolumns config
* @return json
*/
public function getDC()
{
$rez = $this->getNodeParam('DC');
//its a config reference, get it from config
if (!empty($rez['data']) && is_scalar($rez['data'])) {
$rez['data'] = \CB\Config::getDCConfig($rez['data']);
}
return $rez;
}