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


PHP CMS::getModules方法代码示例

本文整理汇总了PHP中CMS::getModules方法的典型用法代码示例。如果您正苦于以下问题:PHP CMS::getModules方法的具体用法?PHP CMS::getModules怎么用?PHP CMS::getModules使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CMS的用法示例。


在下文中一共展示了CMS::getModules方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getForm

 public function getForm()
 {
     Yii::app()->controller->widget('ext.tinymce.TinymceWidget');
     return new CMSForm(array('id' => __CLASS__, 'showErrorSummary' => true, 'attributes' => array('class' => 'form-horizontal'), 'elements' => array('name' => array('type' => 'text', 'id' => 'title'), 'seo_alias' => array('type' => 'text', 'id' => 'alias', 'visible' => !Yii::app()->settings->get('core', 'translate_object_url')), 'parent_id' => array('type' => 'dropdownlist', 'items' => Html::listData(CategoriesModel::model()->parent()->findAll(), 'id', 'name'), 'empty' => '— Выбать —'), 'module' => array('type' => 'dropdownlist', 'items' => CMS::getModules()), 'text' => array('type' => 'textarea', 'class' => 'editor'), 'date_update' => array('type' => 'text', 'value' => date('Y-m-d H:i:s'))), 'buttons' => array('submit' => array('type' => 'submit', 'class' => 'btn btn-success', 'label' => Yii::t('app', 'SAVE')))), $this);
 }
开发者ID:buildshop,项目名称:bs-common,代码行数:5,代码来源:CategoriesModel.php

示例2: getForm

 public function getForm()
 {
     Yii::app()->controller->widget('ext.tinymce.TinymceWidget');
     return new CMSForm(array('showErrorSummary' => true, 'attributes' => array('class' => 'form-horizontal', 'id' => __CLASS__), 'elements' => array('name' => array('type' => 'text'), 'content' => array('type' => 'textarea', 'class' => 'editor'), 'widget' => array('type' => 'dropdownlist', 'items' => Yii::app()->widgets->getData(), 'empty' => Yii::t('app', 'EMPTY_DROPDOWNLIST', 1), 'hint' => $this->t('HINT_WIDGET')), '<div id="payment_configuration"></div>', 'modules' => array('type' => 'checkboxlist', 'items' => CMS::getModules()), 'access' => array('type' => 'dropdownlist', 'items' => Yii::app()->access->dataList(), 'empty' => Yii::t('app', 'EMPTY_DROPDOWNLIST', 1)), 'position' => array('type' => 'dropdownlist', 'items' => $this->allPositions, 'empty' => Yii::t('app', 'EMPTY_DROPDOWNLIST', 1)), 'expire' => array('type' => 'text'), 'action' => array('type' => 'dropdownlist', 'empty' => Yii::t('app', 'EMPTY_DROPDOWNLIST', 1), 'items' => array('update' => Yii::t('app', 'OFF', 1), 'delete' => Yii::t('app', 'DELETE')), 'hint' => $this->t('HINT_ACTION'))), 'buttons' => array('submit' => array('type' => 'submit', 'class' => 'btn btn-success', 'label' => Yii::t('app', 'SAVE')))), $this);
 }
开发者ID:buildshop,项目名称:bs-common,代码行数:5,代码来源:BlocksModel.php


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