sfDoctrinePluginConfiguration.class.php 668 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) Jonathan H. Wage <jonwage@gmail.com>
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * sfDoctrinePluginConfiguration Class
  11. *
  12. * @package symfony
  13. * @subpackage doctrine
  14. * @author Jonathan H. Wage <jonwage@gmail.com>
  15. * @version SVN: $Id: sfDoctrineConnectionListener.class.php 11878 2008-09-30 20:14:40Z Jonathan.Wage $
  16. */
  17. class sfDoctrinePluginConfiguration extends sfPluginConfiguration
  18. {
  19. public function initialize()
  20. {
  21. require_once dirname(__FILE__) . '/config.php';
  22. return true;
  23. }
  24. }