Example #1
0
 public function render(Varien_Object $row)
 {
     $string = '';
     if ($row->getAttributeCodes()) {
         $aCodes = explode(',', $row->getAttributeCodes());
         $result = array_unique($aCodes);
         $string = implode(', ', $result);
     }
     return $string;
 }