Example #1
0
 /**
  * Returns a string that displays the opening/closing time of the hour
  * @param  Varien_Object $item
  * @return string
  */
 public function render(Varien_Object $item)
 {
     if ($item->isOpen()) {
         return $this->_getValue($item);
     }
     return $this->__('Closed');
 }