-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCss.php
More file actions
80 lines (68 loc) · 2 KB
/
Css.php
File metadata and controls
80 lines (68 loc) · 2 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
<?php
class Css {
//this is an associative array that's used when replacing
private $settings;
//This is the path (relative to this file) to the dir that holds the css files to parse
private $cssDir = "css/";
//private varray to store the files
private $cssFiles = array();
//This is the path (relative to this file) to the dir where the parsed css files wil be written
private $outCssDir = "../css/";
/**
* the class thake only one parameters, an associative array of keys to replace with their respective values
*/
function __construct($settings) {
$this -> settings = $settings;
$this -> readFiles();
$this -> replaceValuesInCssStrings();
}
private function readFiles() {
$dir = dirname(__FILE__) . DIRECTORY_SEPARATOR . $this -> cssDir;
if (file_exists($dir)) {
if ($handle = opendir($dir)) {
/* This is the correct way to loop over the directory. */
while (false !== ($entry = readdir($handle))) {
//filter out .. and .
if ($entry !== "." && $entry !== "..") {
$cssFiles[$entry] = file_get_contents($dir . $entry);
}
}
closedir($handle);
}
}
$this -> cssFiles = $cssFiles;
}
private function replaceValuesInCssStrings() {
foreach ($this->cssFiles as $fileName => $fileContent) {
$this->cssFiles[$fileName] = strtr($fileContent, $this-> settings);
}
}
/**
* renders the parsed css files in a <style> tag
*/
public function render() {
$css = "<style>\n";
foreach ($this -> cssFiles as $fileContent) {
$css .= $fileContent;
}
$css .= "</style>";
echo($css);
}
/**
* writes the parsed css files to the $outCssDir (keeping their names intact)
*/
public function renderToFile() {
$dir = dirname(__FILE__) . DIRECTORY_SEPARATOR . $this -> outCssDir;
if (file_exists($dir)) {
foreach($this->cssFiles as $fileName => $fileContent){
file_put_contents($dir . $fileName, $fileContent);
}
}
}
/**
* this is just in case you want to call echo ($css)
*/
public function __toString() {
$this -> render();
}
}