當前位置: 首頁>>代碼示例>>PHP>>正文


PHP components\WebModule類代碼示例

本文整理匯總了PHP中yupe\components\WebModule的典型用法代碼示例。如果您正苦於以下問題:PHP WebModule類的具體用法?PHP WebModule怎麽用?PHP WebModule使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了WebModule類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getModuleParamRow

 /**
  * Формирует поле для редактирование параметра модуля
  * @param \yupe\components\WebModule $module
  * @param $param
  * @return string
  */
 private function getModuleParamRow(\yupe\components\WebModule $module, $param)
 {
     $editableParams = $module->getEditableParams();
     $moduleParamsLabels = $module->getParamsLabels();
     $res = CHtml::label($moduleParamsLabels[$param], $param);
     /* если есть ключ в массиве параметров, то значит этот параметр выпадающий список в вариантами */
     if (array_key_exists($param, $editableParams)) {
         $res .= CHtml::dropDownList($param, $module->{$param}, $editableParams[$param], ['class' => 'form-control', 'empty' => Yii::t('YupeModule.yupe', '--choose--')]);
     } else {
         $res .= CHtml::textField($param, $module->{$param}, ['class' => 'form-control']);
     }
     return $res;
 }
開發者ID:RexGalicie,項目名稱:yupe,代碼行數:19,代碼來源:BackendController.php

示例2: getInstall

 public function getInstall()
 {
     if (parent::getInstall()) {
         YFile::checkPath($this->updateTmpPath);
     }
     return false;
 }
開發者ID:RexGalicie,項目名稱:yupe,代碼行數:7,代碼來源:UpdateModule.php

示例3: beforeControllerAction

 public function beforeControllerAction($controller, $action)
 {
     if (parent::beforeControllerAction($controller, $action)) {
         return true;
     } else {
         return false;
     }
 }
開發者ID:alexanderkuz,項目名稱:test-yii2,代碼行數:8,代碼來源:StatementModule.php

示例4: init

 /**
  *
  */
 public function init()
 {
     parent::init();
     $this->setImport(['callback.models.*']);
 }
開發者ID:alextravin,項目名稱:yupe,代碼行數:8,代碼來源:CallbackModule.php

示例5: init

 public function init()
 {
     parent::init();
     $this->setImport(array('portfolio.models.*'));
 }
開發者ID:kuzmina-mariya,項目名稱:unizaro-stone,代碼行數:5,代碼來源:PortfolioModule.php

示例6: init

 public function init()
 {
     parent::init();
     $this->setImport(array('application.modules.chemical.models.*', 'application.modules.dictionary.models.*'));
 }
開發者ID:kuzmina-mariya,項目名稱:unizaro-stone,代碼行數:5,代碼來源:ChemicalModule.php

示例7: init

 /**
  *
  */
 public function init()
 {
     $this->setImport(['notify.models.*']);
     parent::init();
 }
開發者ID:alextravin,項目名稱:yupe,代碼行數:8,代碼來源:NotifyModule.php

示例8: init

 public function init()
 {
     parent::init();
     $this->setImport(['cart.extensions.shopping-cart.*', 'cart.widgets.ShoppingCartWidget', 'cart.models.*']);
 }
開發者ID:RexGalicie,項目名稱:yupe,代碼行數:5,代碼來源:CartModule.php

示例9: init

 /**
  * Инициализация модуля:
  *
  * @return nothing
  **/
 public function init()
 {
     parent::init();
 }
開發者ID:sepaker,項目名稱:yupe,代碼行數:9,代碼來源:YupeModule.php

示例10: init

 public function init()
 {
     $this->setImport(array('storeswap.models.*', 'storeswap.components.*'));
     parent::init();
 }
開發者ID:QSODevelopers,項目名稱:yupe-storeswap,代碼行數:5,代碼來源:StoreswapModule.php

示例11: init

 public function init()
 {
     $this->setImport(array('user.models.*', 'user.components.*'));
     // Инициализируем роли и списки ролей
     $guestRole = Yii::app()->user->guestName;
     $this->rolesList = array();
     foreach (Yii::app()->authManager->roles as $key => $role) {
         if ($key != $guestRole) {
             $this->rolesList[$key] = $role->description;
         }
     }
     if (empty($this->rolesList)) {
         $this->rolesList = array('admin' => Yii::t('UserModule.user', 'Administrator'), 'user' => Yii::t('UserModule.user', 'User'));
     }
     parent::init();
 }
開發者ID:kuzmina-mariya,項目名稱:unizaro-stone,代碼行數:16,代碼來源:UserModule.php

示例12: init

 /**
  *
  */
 public function init()
 {
     parent::init();
     $this->setImport(['application.modules.realty.models.*', 'application.modules.eav.models.*', 'application.modules.eav.components.eavactiverecord.*', 'application.modules.eav.components.eavactiverecord.datatypes.*']);
 }
開發者ID:kuzmina-mariya,項目名稱:4seasons,代碼行數:8,代碼來源:RealtyModule.php

示例13: init

 public function init()
 {
     $this->setImport(['user.models.*', 'user.events.*', 'user.listeners.*', 'user.components.*', 'yupe.YupeModule']);
     parent::init();
 }
開發者ID:kuzmina-mariya,項目名稱:4seasons,代碼行數:5,代碼來源:UserModule.php

示例14: init

 /**
  *
  */
 public function init()
 {
     parent::init();
     $this->setImport(['category.models.*', 'category.components.*']);
 }
開發者ID:alextravin,項目名稱:yupe,代碼行數:8,代碼來源:CategoryModule.php

示例15: init

 public function init()
 {
     parent::init();
     $this->setImport(['order.models.*', 'order.forms.*']);
 }
開發者ID:RexGalicie,項目名稱:yupe,代碼行數:5,代碼來源:OrderModule.php


注:本文中的yupe\components\WebModule類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。