当前位置: 首页>>代码示例>>PHP>>正文


PHP Config::getModule方法代码示例

本文整理汇总了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));
 }
开发者ID:orlov-vo,项目名称:yii2-markdown,代码行数:14,代码来源:ParseController.php

示例2: module

 /**
  * Returns the tree view module
  *
  * @return Module
  */
 public static function module()
 {
     return Config::getModule(Module::MODULE);
 }
开发者ID:jaclise,项目名称:yii2-tree-manager,代码行数:9,代码来源:TreeView.php

示例3: fetchModule

 /**
  * Gets the module
  *
  * @param string $module the module name
  *
  * @return Module
  */
 public static function fetchModule($module = self::MODULE)
 {
     return Config::getModule($module);
 }
开发者ID:Romariosss,项目名称:yii2-dynagrid,代码行数:11,代码来源:Module.php

示例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} : [];
 }
开发者ID:wangjulong,项目名称:advancedBak,代码行数:11,代码来源:Widget.php


注:本文中的kartik\base\Config::getModule方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。