本文整理汇总了PHP中kartik\base\Config::getModule方法的典型用法代码示例。如果您正苦于以下问题:PHP Config::getModule方法的具体用法?PHP Config::getModule怎么用?PHP Config::getModule使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kartik\base\Config
的用法示例。
在下文中一共展示了Config::getModule方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionPreview
/**
* Convert markdown text to HTML for preview
*
* @returns JSON encoded HTML output
*/
public function actionPreview()
{
$output = '';
$module = Config::getModule(Module::MODULE);
if (isset($_POST['source'])) {
$output = strlen($_POST['source']) > 0 ? Markdown::convert($_POST['source'], ['custom' => $module->customConversion]) : $_POST['nullMsg'];
}
echo Json::encode(HtmlPurifier::process($output));
}
示例2: module
/**
* Returns the tree view module
*
* @return Module
*/
public static function module()
{
return Config::getModule(Module::MODULE);
}
示例3: fetchModule
/**
* Gets the module
*
* @param string $module the module name
*
* @return Module
*/
public static function fetchModule($module = self::MODULE)
{
return Config::getModule($module);
}
示例4: getConfig
/**
* Gets configuration for a widget from the module
*
* @param string $widget name of the widget
* @return array
*/
public function getConfig($widget)
{
$module = Config::getModule($this->moduleName);
return isset($module->{$widget}) ? $module->{$widget} : [];
}