本文整理汇总了PHP中CM_Params::getParamsDecoded方法的典型用法代码示例。如果您正苦于以下问题:PHP CM_Params::getParamsDecoded方法的具体用法?PHP CM_Params::getParamsDecoded怎么用?PHP CM_Params::getParamsDecoded使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CM_Params
的用法示例。
在下文中一共展示了CM_Params::getParamsDecoded方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isActive
/**
* @param string $path
* @param CM_Params $params
* @return bool
*/
public final function isActive($path, CM_Params $params)
{
if ($this->compare($path, $params->getParamsDecoded())) {
return true;
}
if ($this->hasChildren()) {
foreach ($this->getChildren()->getAllEntries() as $entry) {
if ($entry->isActive($path, $params)) {
return true;
}
}
}
return false;
}
示例2: _addNumeric
/**
* @param string $value
*/
private function _addNumeric($value)
{
$this->_numeric->set(count($this->_numeric->getParamsDecoded()), $value);
}
示例3: _process
protected function _process(CM_Params $params, CM_Http_Response_View_Form $response, CM_Form_Abstract $form)
{
//$response->reloadComponent();
$response->addMessage(nl2br($this->_printVar($params->getParamsDecoded())));
}
示例4: ajax_reloadComponent
public function ajax_reloadComponent(CM_Params $params, CM_Frontend_JavascriptContainer_View $handler, CM_Http_Response_View_Ajax $response)
{
$response->reloadComponent($params->getParamsDecoded());
}
示例5: _process
protected function _process(CM_Params $params, CM_Http_Response_View_Form $response, CM_Form_Abstract $form)
{
return $params->getParamsDecoded();
}