8 lines
210 B
PHP
8 lines
210 B
PHP
<?php
|
|
|
|
class Airtime_View_Helper_IsTrial extends Zend_View_Helper_Abstract{
|
|
public function isTrial(){
|
|
$plan = Application_Model_Preference::GetPlanLevel();
|
|
return $plan == 'trial';
|
|
}
|
|
}
|