CC-2755: Displaying trial ending information

- it only displays about remaining date when the plan level is 'trial'
This commit is contained in:
James 2011-09-02 12:10:46 -04:00
parent 1a8214fccc
commit ce2ce0a13a
5 changed files with 32 additions and 2 deletions

View file

@ -10,7 +10,7 @@
<div id="Panel">
<div class="logo"></div>
<?php echo $this->partial('partialviews/header.phtml', array("user" => $this->loggedInAs(), "trial_remain"=> $this->trialRemaining())) ?>
<?php echo $this->partial('partialviews/header.phtml', array("user" => $this->loggedInAs(), "is_trial"=>$this->isTrial(), "trial_remain"=> $this->trialRemaining())) ?>
<?php $partial = array('menu.phtml', 'default');
$this->navigation()->menu()->setPartial($partial); ?>

View file

@ -10,7 +10,7 @@
<div id="Panel">
<div class="logo"></div>
<?php echo $this->partial('partialviews/header.phtml', array("user" => $this->loggedInAs(), "trial_remain"=> $this->trialRemaining())) ?>
<?php echo $this->partial('partialviews/header.phtml', array("user" => $this->loggedInAs(), "is_trial"=>$this->isTrial(), "trial_remain"=> $this->trialRemaining())) ?>
<?php $partial = array('menu.phtml', 'default');
$this->navigation()->menu()->setPartial($partial); ?>