Public Member Functions | |
render (Varien_Object $row) |
Definition at line 32 of file Country.php.
render | ( | Varien_Object $ | row | ) |
Render country grid column
Varien_Object | $row |
Reimplemented from Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract.
Definition at line 40 of file Country.php.
00041 { 00042 if ($data = $row->getData($this->getColumn()->getIndex())) { 00043 $name = Mage::app()->getLocale()->getCountryTranslation($data); 00044 if (empty($name)) { 00045 $name = $data; 00046 } 00047 return $name; 00048 } 00049 return null; 00050 }