forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDrupalSetup.php
More file actions
48 lines (40 loc) · 1.54 KB
/
DrupalSetup.php
File metadata and controls
48 lines (40 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
namespace Hestia\WebApp\Installers\Drupal;
use \Hestia\WebApp\Installers\BaseSetup as BaseSetup;
class DrupalSetup extends BaseSetup {
protected $appname = 'drupal';
protected $appInfo = [
'name' => 'Drupal',
'group' => 'cms',
'enabled' => 'yes',
'version' => 'latest',
'thumbnail' => 'drupal-thumb.png'
];
protected $config = [
'form' => [
'username' => ['type'=>'text', 'value'=>'admin'],
'password' => 'password',
'email' => 'text'
],
'database' => true,
'resources' => [
'composer' => [ 'src' => 'drupal/recommended-project', 'dst' => '/' ],
],
];
public function install(array $options=null) : bool
{
parent::install($options);
$this->appcontext->runComposer(["require", "-d " . $this->getDocRoot(), "drush/drush:^10"], $result);
$this -> appcontext -> runUser('v-run-cli-cmd', [
'php',
$this -> getDocRoot('/vendor/drush/drush/drush'),
'site-install',
'standard',
'--db-url=mysql://'.$this->appcontext->user() . '_' . $options['database_user'].':' . $options['database_password'].'@localhost:3306/'.$this->appcontext->user() . '_' . $options['database_name'].'',
'--account-name='.$options['username'].' --account-pass='.$options['password'],
'--site-name=Drupal',
'--site-mail='.$options['email']
], $status);
return ($status->code === 0);
}
}