本文整理汇总了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;
}
示例2: getInstall
public function getInstall()
{
if (parent::getInstall()) {
YFile::checkPath($this->updateTmpPath);
}
return false;
}
示例3: beforeControllerAction
public function beforeControllerAction($controller, $action)
{
if (parent::beforeControllerAction($controller, $action)) {
return true;
} else {
return false;
}
}
示例4: init
/**
*
*/
public function init()
{
parent::init();
$this->setImport(['callback.models.*']);
}
示例5: init
public function init()
{
parent::init();
$this->setImport(array('portfolio.models.*'));
}
示例6: init
public function init()
{
parent::init();
$this->setImport(array('application.modules.chemical.models.*', 'application.modules.dictionary.models.*'));
}
示例7: init
/**
*
*/
public function init()
{
$this->setImport(['notify.models.*']);
parent::init();
}
示例8: init
public function init()
{
parent::init();
$this->setImport(['cart.extensions.shopping-cart.*', 'cart.widgets.ShoppingCartWidget', 'cart.models.*']);
}
示例9: init
/**
* Инициализация модуля:
*
* @return nothing
**/
public function init()
{
parent::init();
}
示例10: init
public function init()
{
$this->setImport(array('storeswap.models.*', 'storeswap.components.*'));
parent::init();
}
示例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();
}
示例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.*']);
}
示例13: init
public function init()
{
$this->setImport(['user.models.*', 'user.events.*', 'user.listeners.*', 'user.components.*', 'yupe.YupeModule']);
parent::init();
}
示例14: init
/**
*
*/
public function init()
{
parent::init();
$this->setImport(['category.models.*', 'category.components.*']);
}
示例15: init
public function init()
{
parent::init();
$this->setImport(['order.models.*', 'order.forms.*']);
}