PATH:
home
/
letacommog
/
letaweb
/
protected
/
modules
/
profile
/
views
/
page
<div class="col-md-6"> <div class="info"> <h3 class="template_name"><a target="_blank" href="<?php echo $data->getSiteURL(); ?>"><?php echo $data->name; ?></a></h3> <p>Current plan : <?php echo (isset($data->plan) ? $data->plan->name : 'Undefined'); ?></p> </div> <div class="actions"> <?php $is_expired = $data->isExpired(); if ($is_expired) { $this->t('LBL_PROFILE_PAGE_PAGE_EXPIRED'); } ?> <?php if (!$is_expired) { ?> <a href="<?php echo $this->createUrl("/page/edit/id/".$data->id); ?>" class="btn btn-primary" target="_blank"><i class="fa fa-cog"></i><?php $this->t('LBL_EDIT'); ?></a> <?php if (!$data->is_template) { echo CHtml::link('<i class="fa fa-trash"></i>', array('delete?id='.$data->id), array('class' => 'btn btn-danger')); } ?> <?php } ?> <a href="<?php echo $this->createUrl("page/upgrade?id=".$data->id); ?>" class="btn btn-primary"><i class="fa fa-arrow-circle-up"></i><?php $this->t('LBL_CHANGE_PLAN'); ?></a> </div> <div class="template_preview thumbnail"> <img src="<?php echo Yii::app()->getBaseUrl(true).'/websites/'.$data->name.'/screenshot.jpg' ?>" /> </div> <?php if ($data->is_created_complete) { ?> <?php } else { ?> <div class="info"> <?php echo CHtml::link($this->term('LBL_PROFILE_PAGE_COMPLETE_CREATION'), array('/page/create/continue/1/id/'.$data->id), array('class' => 'btn btn-primary', 'target' => '_blank')); ?> </div> <?php } ?> </div>
[+]
..
[-] upgrade.php
[edit]
[+]
checkout
[-] index.php
[edit]
[-] item.php
[edit]
[-] delete.php
[edit]
[-] deleteconfirmpassword.php
[edit]
[-] domain.php
[edit]
[-] subdomain.php
[edit]
[-] deleteconfirm.php
[edit]
[-] checkout.php
[edit]
[-] midnav.php
[edit]