-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathid-config.sample.php
More file actions
82 lines (75 loc) · 2.54 KB
/
id-config.sample.php
File metadata and controls
82 lines (75 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/**
* Identity configuration
*
* To define your own identity for the website management system
* copy or rename the `id-config.sample.php` file as `id-config.php`
* and include in the root directory.
*
* Support is included for `id-config.php` to be included
* one directory above the website management system root.
*
* If using this system as your own for further development then
* change the identity defaults in the `id-config.sample.php` file.
*
* @see `app-includes/constants-default.php` for fallback definitions.
*
* @package App_Package
*/
/**
* Identity in code
*
* Following is a list of strings to find and replace in files.
*
* 1. Package
*
* The `@package` tag is used to categorize structural elements into
* logical subdivisions.
*
* Find `App_Package` and replace with something unique to your system,
* include underscores between words.
*
* 2. Namespace
*
* Namespaces encapsulate code and help solve naming conflicts.
*
* Find `AppNamespace` and replace with something unique to your system,
* underscores between words is acceptable.
*
* The namespace name PHP and compound names starting with this name
* are reserved for internal language use and should not be used.
*
* 3. Description
*
* This software is typically described in file documentation and in
* display text as a website management system. You may want to find
* `website management system` and `system` to
* replace with your own description.
*/
// Get the system environment constants.
require_once( dirname( __FILE__ ) . '/app-environment.php' );
// Define a name of the website management system.
define( 'APP_NAME', 'system' );
// Define a tagline of the website management system.
define( 'APP_TAGLINE', 'generic, white-label website management' );
// Define a URL for the website management system.
define( 'APP_WEBSITE', '' );
// Define an icon path for the website management system.
define( 'APP_IMAGE', dirname( dirname( $_SERVER['PHP_SELF'] ) ) . APP_ASSETS_DIR . '/images/app-icon.png' );
/**
* Identity colors
*
* Used for configurataion and installation pages.
*
* This is implemented in a style block so use CSS values:
* name, hex, rgb, rgba, hsl, hsla, or inherit.
*
* @todo Use for a custom admin color scheme,
* available for front end use as well.
*/
define( 'APP_COLOR', 'inherit' );
define( 'APP_DARK_COLOR', 'white' );
define( 'APP_BG_COLOR', 'white' );
define( 'APP_DARK_BG_COLOR', '#222222' );
define( 'APP_PRIMARY_COLOR', '#ffee00' );
define( 'APP_SECONDARY_COLOR', '#3ad4fb' );