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


PHP ActiveForm::run方法代码示例

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


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

示例1: run

 public function run()
 {
     parent::run();
     if ($this->append) {
         echo $this->append;
     }
 }
开发者ID:nagser,项目名称:base,代码行数:7,代码来源:ActiveForm.php

示例2: run

 public function run()
 {
     parent::run();
     echo '</div>';
     if ($this->footer) {
         echo '<div class="panel-footer">' . $this->footer . '</div>';
     }
     echo '</div>';
 }
开发者ID:vfokov,项目名称:tims2,代码行数:9,代码来源:ActiveForm.php

示例3: run

 public function run()
 {
     parent::run();
     if (!isset($this->options['id'])) {
         $this->options['id'] = $this->getId();
     }
     if ($this->beforeSubmit) {
         $id = $this->options['id'];
         $view = $this->getView();
         $view->registerJs("jQuery('#{$id}').on('beforeSubmit', function() { return " . $this->beforeSubmit . "(this); });");
     }
 }
开发者ID:phpsong,项目名称:ExtJS5-Yii2,代码行数:12,代码来源:ActiveForm.php

示例4: run

 /**
  * @inheritdoc
  */
 public function run()
 {
     parent::run();
     $view = $this->getView();
     ActiveFormAsset::register($view);
 }
开发者ID:am1rb,项目名称:yii2-foundation,代码行数:9,代码来源:ActiveForm.php

示例5: run

 /**
  * (non-PHPdoc)
  * @see \yii\widgets\ActiveForm::run()
  */
 public function run()
 {
     parent::run();
     Pjax::end();
     if (!isset($this->template)) {
         $this->createDefaultTemplate();
     }
     echo $this->render('template/footer', ['formModel' => $this->formModel, 'templateController' => $this->_module->templateController, 'displayedAttributes' => $this->displayedAttributes, 'fieldNames' => $this->template->fields, 'submitTitle' => $this->submitTitle]);
     Pjax::begin(['id' => 'template-panel-pjax']);
     echo $this->templatesPanel();
     Pjax::end();
     Pjax::end();
     FlexibleFormAsset::register($this->view);
 }
开发者ID:novikas,项目名称:yii2-flexform,代码行数:18,代码来源:FlexibleForm.php

示例6: run

 /**
  * Will show the Stripe's simple form modal
  */
 public function run()
 {
     parent::run();
     $this->registerFormScripts();
     if ($this->applyJqueryPaymentFormat || $this->applyJqueryPaymentValidation) {
         $this->registerJqueryPaymentScripts();
     }
 }
开发者ID:davidjeddy,项目名称:yii2-stripe,代码行数:11,代码来源:StripeForm.php


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