Enhancement(機能追加・改善) #1607 » 0001-added-opApplicationConfigurtion-getLibDirs-method.patch
lib/config/opApplicationConfiguration.class.php | ||
---|---|---|
}
|
||
/**
|
||
* Gets directories where library classes are stored for a given module.
|
||
*
|
||
* @param string $moduleName The module name
|
||
*
|
||
* @return array An array of directories
|
||
*/
|
||
public function getLibDirs($moduleName)
|
||
{
|
||
$dirs = array();
|
||
$dirs = array_merge($dirs, $this->globEnablePlugin('/apps/'.sfConfig::get('sf_app').'/modules/'.$moduleName.'/lib', false));
|
||
$dirs = array_merge($dirs, parent::getLibDirs($moduleName));
|
||
return $dirs;
|
||
}
|
||
/**
|
||
* Gets directories where template files are stored for a given module.
|
||
*
|
||
* @param string $moduleName The module name
|