JoomlaSetup.php 625 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Hestia\WebApp\Installers\Joomla;
  3. use \Hestia\WebApp\Installers\BaseSetup as BaseSetup;
  4. class JoomlaSetup extends BaseSetup {
  5. protected $appname = 'joomla';
  6. protected $appInfo = [
  7. 'name' => 'Joomla',
  8. 'group' => 'cms',
  9. 'enabled' => false,
  10. 'version' => 'latest',
  11. 'thumbnail' => 'joomla-thumb.png'
  12. ];
  13. protected $config = [
  14. 'form' => [
  15. ],
  16. 'database' => true,
  17. 'resources' => [
  18. ],
  19. ];
  20. public function install(array $options=null) : bool
  21. {
  22. exit( "Installer missing" );
  23. }
  24. }