/**
  * Renders grid column
  *
  * @param   Varien_Object $row
  * @return  string
  */
 public function render(Varien_Object $row)
 {
     $pathExists = $row->getFolderPathExists();
     if ($pathExists == "false") {
         return "<p class='error'>" . Mage::helper('modulesmanager')->__('%s does not exist', $row->getFolderPath()) . "</p>";
     } else {
         return "<p class='pass'>" . $pathExists . "</p>";
     }
 }