/**
  * Retrieve the row url for the given history row
  *
  * @param  FireGento_AdminMonitoring_Model_History $row
  * @return string
  */
 public function getRowUrl(FireGento_AdminMonitoring_Model_History $row)
 {
     $transport = new Varien_Object();
     Mage::dispatchEvent('firegento_adminmonitoring_rowurl', array('history' => $row, 'transport' => $transport));
     return $transport->getRowUrl();
 }