<?php

class CPriceTable extends CWidget
{
    public $url = '';
    public $display_button;
    public function run()
    {
        $plans = Plan::model()->findAll('display=1');
        $col = (int)(12 / sizeof($plans));
        $this->render('pricetable', array('plans' => $plans, 'col' => $col));
    }
}
