forked from rupl/drush_make_generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.example.php
55 lines (37 loc) · 1.01 KB
/
_config.example.php
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
49
50
51
52
53
54
55
<?php
// Configuration for Drush Make Generator
// Remove '.example' from the filename to use
/*
// errors!!
error_reporting(E_ALL);
ini_set('display_errors', '1');
//*/
// Protect against pointless execs
define('CONFIG_FILE','PRESENT');
// Connect to database
$dbh = mysql_connect('localhost','USER','PASS');
mysql_select_db('DATABASE');
define('SQL_SEPARATOR','|');
// major release of Drupal
global $version;
$version = (isset($_GET['v'])) ? $_GET['v'] : 7;
// path to drush. default assumes you have an alias 'drush'
// or that drush is in a known bin directory
define('PATH_TO_DRUSH','drush');
// analytics account
// swap code out in footer.php to use whatever service you wish
define('ANALYTICS_ACCOUNT','');
// release flags
// defined numerically so we can sort them logically
define('STABLE',9);
define('SUPPORTED',5);
define('DEV',0);
/**
* MAKEFILE OPTIONS
*
*/
// directory to install contrib modules
define('CONTRIB_DIR','');
// default shorturl value
define('SHORTURL_DEFAULT','short-url');
?>