-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault.catconfig.php
More file actions
30 lines (30 loc) · 1.08 KB
/
default.catconfig.php
File metadata and controls
30 lines (30 loc) · 1.08 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
<?php
if (postgrab("advisorInitials")) {
$data['advisorInitials'] = postgrab("advisorInitials");
} else {
$data['advisorInitials'] = "INIATILS_HERE";
}
/* Acquia SVN password.*/
if (postgrab("svnPassword")) {
$data['svnPassword'] = postgrab("svnpassword");
} else {
$data['svnPassword'] = "SNV_PASSWORD";
}
/* Acquia SVN username.*/
if (postgrab("svnUsername")) {
$data['svnUsername'] = postgrab("svnUsername");
} else {
$data['svnUsername'] = "acquia_ahsupport_SVNUSERNAME";
}
/* Local path to location of all client folders ('~/Sites/clients') */
if (postgrab("clientDirectory")) {
$data['clientDirectory'] = postgrab("clientDirectory");
} else {
$data['clientDirectory'] = "CLIENT_DIRECTORY";
}
/* Local checkout path ('~/Sites/releases/version-patches') to clone of https://github.com/acquiacat/Drupal-Core-Git-Patches */
if (postgrab("patchDirectory")) {
$data['patchDirectory'] = postgrab("patchDirectory");
} else {
$data['patchDirectory'] = "PATCH_DIRECTORY";
?>