本文整理匯總了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.*']);
}