-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview-config_example.php
More file actions
73 lines (67 loc) · 2.05 KB
/
view-config_example.php
File metadata and controls
73 lines (67 loc) · 2.05 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
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| JavaScript/CSS debug flag
|--------------------------------------------------------------------------
|
| To switch JavaScript/CSS files between minified and development version
| JavaScript/CSS. Before you disable debug flags, you should prepare the
| minified files.
|
*/
$config['js_debug'] = TRUE;
$config['css_debug'] = TRUE;
/*
|--------------------------------------------------------------------------
| Minified JavaScript/CSS files extension
|--------------------------------------------------------------------------
|
| Replace JavaScript/CSS files extension to minified files
| extension(suffix).
|
*/
$config['minify_js_ext'] = '.min.js';
$config['minify_css_ext'] = '.min.css';
/*
|--------------------------------------------------------------------------
| Output collapse
|--------------------------------------------------------------------------
|
| Remove all tab(\t), new line(\n) and return(\r) characters in output.
|
| WARNING: It may crash your code. Those characters will be removed without
| intelligence.
|
*/
$config['output_collapse'] = FALSE;
/*
|--------------------------------------------------------------------------
| Title Separator
|--------------------------------------------------------------------------
|
| Separate multiple title segments.
|
*/
$config['title_separator'] = ' - ';
/*
|--------------------------------------------------------------------------
| Base Path Symbol
|--------------------------------------------------------------------------
|
| Find and replace all symbol to URL to your CodeIgniter root WITH a
| trailing slash.
|
| Set to NULL to disable this feature.
|
*/
$config['base_path_symbol'] = '~/';
/*
|--------------------------------------------------------------------------
| Magic Replace
|--------------------------------------------------------------------------
|
| Find key and replace all as its value
|
*/
$config['magic_replace'] = array();