-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
executable file
·59 lines (46 loc) · 1.11 KB
/
functions.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
56
57
58
59
<?php
function writeCss($css) {
return file_put_contents(__DIR__ . '/dip.css', $css);
}
function writeJs($js) {
return file_put_contents(__DIR__ . '/dip.js', $js);
}
function writeHeader($code) {
global $database;
$database->where('name', 'header');
return $database->update('tags_dip', array('value' => $code));
}
function writeFooter($code) {
global $database;
$database->where('name', 'footer');
return $database->update('tags_dip', array('value' => $code));
}
function readCss() {
return file_get_contents(__DIR__ . '/dip.css');
}
function readJs() {
return file_get_contents(__DIR__ . '/dip.js');
}
function readValue($name) {
global $database;
$database->where('name', $name);
return $database->get('tags_dip', null, array('value'))['0']['value'];
}
function readHeader() {
return readValue('header');
}
function readFooter() {
return readValue('footer');
}
function customCss() {
echo linkTag(TAGS_DIP_URL . '/dip.css');
}
function customJs() {
echo linkTag(TAGS_DIP_URL . '/dip.js');
}
function customHeader() {
echo readHeader();
}
function customFooter() {
echo readFooter();
}