Example #1
0
 /**
  * Renderer for status field
  * @param row values
  * @return rendered output
  */
 public function render(Varien_Object $row)
 {
     if ($row->getShippingStatus()) {
         return 'Enabled';
     } else {
         return 'Disabled';
     }
 }