當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。