PATH:
home
/
letacommog
/
letaweb
/
protected
/
modules
/
profile
/
views
/
checkout
<?php if(isset($_GET['siteId'])) { $siteId = $_GET['siteId']; $site = Site::model()->findByPk($siteId); } if(isset($site)) { ?> <div class="container"> <h2 class="hr-after">Configuration, the plan for your website has changed successfully.</h2> <p>Your site URL : <a href="http://<?php echo $site->getDomain();?>"><?php echo $site->getDomain();?></a></p> <p>Current Plan : <strong><?php echo $site->plan->name; ?></strong></p> <p>Next payment date : <strong><?php echo date('Y-m-d', strtotime($site->expired_date)); ?></strong></p> <h3>Now you can comeback to your site to view change.</h3> </div> <div class="container"> <a href="<?php echo Yii::app()->createAbsoluteUrl('page/edit', array('id'=>$siteId)); ?>" class="btn btn-primary" type="submit">Comeback to admin</a> </div> <?php } ?>
[+]
..
[-] error.php
[edit]
[-] cancel.php
[edit]
[-] success.php
[edit]