sfPluginConfigurationGeneric.class.php 755 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) Fabien Potencier <fabien.potencier@symfony-project.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. * sfPluginConfigurationGeneric represents a configuration for a plugin with no configuration class.
  11. *
  12. * @package symfony
  13. * @subpackage config
  14. * @author Kris Wallsmith <kris.wallsmith@symfony-project.com>
  15. * @version SVN: $Id: sfPluginConfigurationGeneric.class.php 12503 2008-10-31 16:58:52Z Kris.Wallsmith $
  16. */
  17. class sfPluginConfigurationGeneric extends sfPluginConfiguration
  18. {
  19. /**
  20. * @see sfPluginConfiguration
  21. */
  22. public function initialize()
  23. {
  24. return false;
  25. }
  26. }