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


PHP CActiveForm::run方法代码示例

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


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

示例1: run

 /**
  * Runs the widget.
  * This registers the necessary javascript code and renders the form close tag.
  */
 public function run()
 {
     foreach ($this->_summaryAttributes as $attribute) {
         $this->attributes[$attribute]['summary'] = true;
     }
     $options['attributes'] = array_values($this->attributes);
     parent::run();
 }
开发者ID:KEMSolutions,项目名称:Boukem1,代码行数:12,代码来源:BsActiveForm.php

示例2: run

 /**
  * Runs the widget.
  */
 public function run()
 {
     $templates = array();
     foreach ($this->model->getTemplates() as $i => $template) {
         $templates[$i] = basename($template) . ' (' . $template . ')';
     }
     $this->renderFile(Yii::getPathOfAlias('gii.views.common.generator') . '.php', array('model' => $this->model, 'templates' => $templates));
     parent::run();
     echo "</div>";
 }
开发者ID:code-4-england,项目名称:OpenEyes,代码行数:13,代码来源:BaseGiiEventTypeCActiveForm.php

示例3: run

 public function run()
 {
     parent::run();
     if (Yii::app()->request->isAjaxRequest && !empty($_POST['ajaxReturn'])) {
         $id = "#" . $this->htmlOptions['id'];
         $ajaxReturn = $_POST['ajaxReturn'];
         $js = "\$( '{$id}' ).submit( function(){ \$(this).formSubmit( {$ajaxReturn} ); return false; });";
         Yii::app()->clientScript->registerScript('form' . $id, $js, CClientScript::POS_END);
     }
 }
开发者ID:bruno-melo,项目名称:components,代码行数:10,代码来源:MyActiveForm.php

示例4: run

 /**
  * Execute the widget.
  *
  * @access public
  * @return void
  */
 public function run()
 {
     parent::run();
 }
开发者ID:raphaelrocha,项目名称:mtcontrool_mtcontext,代码行数:10,代码来源:EBootstrapActiveForm.php

示例5: run

 /**
  * Runs the widget.
  * Don't render the close tag
  */
 public function run()
 {
     ob_start();
     parent::run();
     ob_get_clean();
 }
开发者ID:dev-lav,项目名称:htdocs,代码行数:10,代码来源:MultiModelForm.php

示例6: run

 /**
  * Runs the widget.
  * This registers the necessary javascript code and renders the form close tag.
  */
 public function run()
 {
     /* todo: override this parent's method in order to register our own js */
     parent::run();
 }
开发者ID:yii-twbs,项目名称:yiistrap,代码行数:9,代码来源:TbActiveForm.php


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