Gpf_Data_Row::get PHP Метод

get() публичный Метод

public get ( $name )
        public function get($name);

Usage Example

 public function filterRow(Gpf_Data_Row $row) {
     if ($row->get('commType') == Pap_Common_Constants::TYPE_SALE) {
         $row->set('actionName', $this->_('per Sale'));
     }
     if ($row->get(self::KEY_COLUMN_ID) == null) {
         $row->set(self::KEY_COLUMN_ID, "NEW_".$row->get('commTypeId'));
     } 
     return $row;
 }
All Usage Examples Of Gpf_Data_Row::get
Gpf_Data_Row