MaintenanceModePlugin.php 560 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Class MaintenanceModePlugin
  5. */
  6. class MaintenanceModePlugin extends Plugin
  7. {
  8. /**
  9. * @return EditHtaccessPlugin
  10. */
  11. public static function create()
  12. {
  13. static $result = null;
  14. return $result ? $result : $result = new self();
  15. }
  16. /**
  17. *
  18. */
  19. protected function __construct()
  20. {
  21. parent::__construct(
  22. '0.1',
  23. 'Julio Montoya',
  24. array(
  25. 'tool_enable' => 'boolean'
  26. )
  27. );
  28. }
  29. }