root/branches/1.2/lib/config/sfPluginConfigurationGeneric.class.php
| Revision 12503, 0.7 kB (checked in by Kris.Wallsmith, 5 years ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the symfony package. |
| 5 | * (c) Fabien Potencier <fabien.potencier@symfony-project.com> |
| 6 | * |
| 7 | * For the full copyright and license information, please view the LICENSE |
| 8 | * file that was distributed with this source code. |
| 9 | */ |
| 10 | |
| 11 | /** |
| 12 | * sfPluginConfigurationGeneric represents a configuration for a plugin with no configuration class. |
| 13 | * |
| 14 | * @package symfony |
| 15 | * @subpackage config |
| 16 | * @author Kris Wallsmith <kris.wallsmith@symfony-project.com> |
| 17 | * @version SVN: $Id$ |
| 18 | */ |
| 19 | class sfPluginConfigurationGeneric extends sfPluginConfiguration |
| 20 | { |
| 21 | /** |
| 22 | * @see sfPluginConfiguration |
| 23 | */ |
| 24 | public function initialize() |
| 25 | { |
| 26 | return false; |
| 27 | } |
| 28 | } |
| 29 |
Note: See TracBrowser for help on using the browser.