MOON
Server: Apache
System: Linux u18017238.onlinehome-server.com 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64
User: emblazeone (1003)
PHP: 7.3.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/emblazeone/public_html/help/views/site/popup.php
<?php
    $this->registerJs('
            $("#close-popup").click(function(){
                $.pjax.reload({
                    container: "#popup_result", 
                    url: "'.\yii\helpers\Url::to(['site/popup']).'", 
                    history: false
                });
            });
        ',\yii\web\View::POS_END);
?>
<div class="modal fade" id="myModal" role="dialog">
    <div class="modal-dialog">
        <!-- Modal content-->
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" id="close-popup" class="close" data-dismiss="modal">×</button>
            </div>
            <div class="modal-body">
                <? \yii\widgets\Pjax::begin(['id'=>'popup_result']); ?>
                    <? if(!$step || $step==1) echo $this->render('popup_first'); ?>
                    <? if($step==2) echo $this->render('popup_contact'); ?>
                    <? if($step==3) echo $this->render('popup_tracking_form'); ?>
                    <? if($step==4) echo $this->render('popup_recognize_form'); ?>
                    <? if($step==5) echo $this->render('popup_refund_form'); ?>
                <? \yii\widgets\Pjax::end(); ?>
            </div>
        </div>
    </div>
</div>