2011-06-10 21:55:32 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This file is part of MySQLDumper released under the GNU/GPL 2 license
|
|
|
|
* http://www.mysqldumper.net
|
|
|
|
*
|
|
|
|
* @package MySQLDumper
|
|
|
|
* @subpackage View_Helpers
|
|
|
|
* @version SVN: $Rev$
|
|
|
|
* @author $Author$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get name of configuration
|
|
|
|
*
|
|
|
|
* @package MySQLDumper
|
|
|
|
* @subpackage View_Helpers
|
|
|
|
*/
|
|
|
|
class Msd_View_Helper_GetConfigTitle extends Zend_View_Helper_Abstract
|
|
|
|
{
|
|
|
|
public function getConfigTitle($configName)
|
|
|
|
{
|
2012-08-04 17:09:48 +00:00
|
|
|
return $this->view->config->getConfigTitle($configName);
|
2011-06-10 21:55:32 +00:00
|
|
|
}
|
|
|
|
}
|