-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.php
executable file
·42 lines (37 loc) · 1.04 KB
/
config.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
<?php
/**
* Site details
*/
$site_title = 'My Single CMS Site';
$site_author = 'Author';
$site_description = 'Site Description';
$site_langage = 'en'; // HTML "lang" attribute - Sample values : fr, it, de, ca...
/**
* Administrator account details
*/
$username = 'admin';
$password = 'passw0rd';
/**
* HTML tags allowed in content
* All others are stripped from the text
*/
$allowed_tags = '<h1><h2><h3><h4><h5><h6><p><a><strong><em><ul><ol><li><img><code><pre><span><div><sup><sub>';
/**
* Google Analytics tracking code
*/
$google_analytics_code = 'UA-XXXXX-X';
/**
* System Messages
*/
$error_auth_failed = "Username/Password incorrect";
$editor_save_success = "Changes Saved";
$editor_save_error = "Changes could not be saved";
$editor_login_name = "User Name";
$editor_login_password = "Password";
$editor_login_login ="Login";
$editor_help_tags = "Allowed tags";
$editor_button_view = "View Site";
$editor_button_logout = "Logout";
$editor_button_save = "Save Changes";
$editor_button_revert = "Revert";
$editor_button_cancel = "Cancel";