Gpf_Data_Row::set PHP Method

set() public method

public set ( $name, $value )
        public function set($name, $value);

Usage Example

コード例 #1
0
 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::set
Gpf_Data_Row