/**
* Returns the class name of the given table
*
* @param string $tableName
*
* @return Zend_Db_Table_Abstract
*/
protected function _getTableFromString($tableName) { $tableName = Enlight_Class::
getClassName($tableName);
return parent::
_getTableFromString($tableName);
}}