public function render(Varien_Object $row)
 {
     $configuration = array();
     $configuration['Cronjob Export'] = $row->getCronjobEnabled() ? Mage::helper('xtento_orderexport')->__('Enabled') : Mage::helper('xtento_orderexport')->__('Disabled');
     $configuration['Event Export'] = $row->getEventObservers() !== '' ? Mage::helper('xtento_orderexport')->__('Enabled') : Mage::helper('xtento_orderexport')->__('Disabled');
     if (!empty($configuration)) {
         $configurationHtml = '';
         foreach ($configuration as $key => $value) {
             $configurationHtml .= Mage::helper('xtento_orderexport')->__($key) . ': <i>' . $value . '</i><br/>';
         }
         return $configurationHtml;
     } else {
         return '---';
     }
 }