develop7
1/26/2010 - 2:40 PM

Model.class.php

<?php
class Model extends BaseModel
{
  public function getPrice($format = null)
  {
    return is_null($format)?$this->_get('price'):sprintf($format, $this->_get('price'));
  }
}