GravSetup.php 627 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace Hestia\WebApp\Installers\Grav;
  3. use Hestia\System\Util;
  4. use \Hestia\WebApp\Installers\BaseSetup as BaseSetup;
  5. class GravSetup extends BaseSetup {
  6. protected $appInfo = [
  7. 'name' => 'Grav',
  8. 'group' => 'cms',
  9. 'enabled' => true,
  10. 'version' => 'latest',
  11. 'thumbnail' => 'grav-symbol.svg'
  12. ];
  13. protected $appname = 'grav';
  14. protected $config = [
  15. 'form' => [
  16. "ignore this"=>"text",
  17. ],
  18. 'database' => false,
  19. 'resources' => [
  20. 'composer' => [ 'src' => 'getgrav/grav', 'dst' => '/']
  21. ],
  22. ];
  23. public function install(array $options = null)
  24. {
  25. parent::install($options);
  26. return (1);
  27. }
  28. }