12345678910111213141516171819202122232425262728293031 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class MaintenanceModePlugin
- */
- class MaintenanceModePlugin extends Plugin
- {
- /**
- * @return EditHtaccessPlugin
- */
- public static function create()
- {
- static $result = null;
- return $result ? $result : $result = new self();
- }
- /**
- *
- */
- protected function __construct()
- {
- parent::__construct(
- '0.1',
- 'Julio Montoya',
- array(
- 'tool_enable' => 'boolean'
- )
- );
- }
- }
|