當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Modal::run方法代碼示例

本文整理匯總了PHP中yii\bootstrap\Modal::run方法的典型用法代碼示例。如果您正苦於以下問題:PHP Modal::run方法的具體用法?PHP Modal::run怎麽用?PHP Modal::run使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在yii\bootstrap\Modal的用法示例。


在下文中一共展示了Modal::run方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: run

 public function run()
 {
     Icon::map($this->view, Icon::FA);
     echo "<div id='cjModalContent'>" . Icon::show('refresh fa-spin', [], Icon::FA) . "</div>";
     //        echo "".Icon::show('refresh fa-spin', [], Icon::FA)."";
     parent::run();
 }
開發者ID:claudejanz,項目名稱:yii2-toolbox,代碼行數:7,代碼來源:AjaxModal.php

示例2: getModal

 public function getModal()
 {
     if (self::$_modal === null) {
         ob_start();
         ob_implicit_flush(false);
         $this->optionsModal['class'] = Modal::className();
         self::$_modal = Yii::createObject($this->optionsModal);
         $out = self::$_modal->run();
         $out = ob_get_clean() . $out;
         $view = $this->getView();
         $view->on($view::EVENT_END_BODY, function () use($out) {
             echo $out;
         });
     }
     return self::$_modal;
 }
開發者ID:lav45,項目名稱:yii2-ajax-create,代碼行數:16,代碼來源:AjaxCreate.php

示例3: run

 public function run()
 {
     $this->registerClientScript();
     echo $this->renderContent();
     echo $this->renderNoTemyMessage();
     return parent::run();
 }
開發者ID:tsyrya,項目名稱:mybriop,代碼行數:7,代碼來源:TemaPicker.php

示例4: run

 /**
  * @inheritdoc
  */
 public function run()
 {
     parent::run();
     if ($this->remote) {
         $id = $this->options['id'];
         $url = Url::to($this->remote);
         $this->getView()->registerJs("Admin.Modal.remote('#{$id}', '{$url}');");
     }
 }
開發者ID:skoro,項目名稱:yii2-admin-template,代碼行數:12,代碼來源:Modal.php

示例5: run

 public function run()
 {
     switch (empty($this->content)) {
         case false:
             parent::init();
             echo $this->content;
             parent::run();
             break;
         default:
             echo $this->renderTogglebutton() . Html::tag('div', Html::tag('div', Html::tag('div', $this->renderHeader() . $this->content, $this->contentOptions), $this->dialogOptions), $this->options);
             break;
     }
 }
開發者ID:nhatvuvan,項目名稱:yii2-widgets,代碼行數:13,代碼來源:Modal.php

示例6: run

    /**
     * @inheritdocs
     */
    public function run()
    {
        $view = $this->getView();
        parent::run();
        ModalAsset::register($view);
        $id = $this->options['id'];
        $ajaxSubmit = $this->ajaxSubmit ? 'true' : 'false';
        $js = <<<JS
        jQuery('#{$id}').kbModalAjax({
            url: '{$this->url}',
            ajaxSubmit: {$ajaxSubmit},
        });
JS;
        $view->registerJs($js);
    }
開發者ID:loveorigami,項目名稱:yii2-modal-ajax,代碼行數:18,代碼來源:Modal.php

示例7: run

    public function run()
    {
        parent::run();
        $js = <<<JS
\$(function(){
    \$(".modal-button").click(function(){ 
        console.log(\$(this));
        var target = \$(this).attr('modal-target');
        \$(target)
            .modal("show")
            .find(".modal-body")
            .load( \$(this).closest("[modal-href]").attr("modal-href") );
    });
});                
JS;
        $view = $this->getView();
        $view->registerJs($js, View::POS_READY, 'yii2popup');
    }
開發者ID:IuriiP,項目名稱:yii2-popajax,代碼行數:18,代碼來源:Popup.php

示例8: run

 public function run()
 {
     $this->registerClientScript();
     return parent::run();
 }
開發者ID:tsyrya,項目名稱:mybriop,代碼行數:5,代碼來源:PrepodavatelPeresechenieModal.php


注:本文中的yii\bootstrap\Modal::run方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。