* @version SVN: $Id$ */ class sfPhpExcelPluginConfiguration extends sfPluginConfiguration { public function initialize() { sfToolkit::addIncludePath(array( realpath(dirname(__FILE__).'/../lib/PHPExcel'), )); if ($this->configuration instanceof sfApplicationConfiguration) { if ($file = $this->configuration->getConfigCache()->checkConfig('config/phpexcel.yml', true)) { include($file); } } } }