blob: cbd6bb1daccfeed97029e5117c8c10970dee446c (
plain)
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
|
<?php
/* -----------------------------------------------------------------------------
class name: css
class version: 2.0
date: 2008-07-13
------------------------------------------------------------------------------
Author : Grum
email : grum@grum.dnsalias.com
website : http://photos.grum.dnsalias.com
PWG user : http://forum.phpwebgallery.net/profile.php?id=3706
<< May the Little SpaceFrog be with you ! >>
------------------------------------------------------------------------------
this classes provides base functions to manage css
classe consider that $filename is under plugins/ directory
- constructor css($filename)
- (public) function css_file_exists()
- (public) function make_CSS($css)
- (public) function apply_CSS()
---------------------------------------------------------------------- */
class css
{
private $filename;
public function css($filename)
{
$this->filename=$filename;
}
/*
make the css file
*/
public function make_CSS($css)
{
if($css!="")
{
$handle=fopen($this->filename, "w");
if($handle)
{
fwrite($handle, $css);
fclose($handle);
}
}
}
/*
return true if css file exists
*/
public function css_file_exists()
{
return(file_exists($this->filename));
}
/*
put a link in the template to load the css file
this function have to be called in a 'loc_end_page_header' trigger
if $text="", insert link to css file, otherwise insert directly a <style> markup
*/
public function apply_CSS()
{
global $template;
if($this->css_file_exists())
{
$template->append('head_elements', '<link rel="stylesheet" type="text/css" href="plugins/'.basename(dirname($this->filename))."/".basename($this->filename).'">');
}
}
} //class
?>
|