summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/classes/cspan.inc.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-12-27 13:58:16 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-12-27 13:58:16 +0000
commit0c61274fcf75d2fcc545b761d64d3307323afcd3 (patch)
tree33c8c74f5ddd66cde9c98bbc6f7aca8d3c46cb23 /frontends/php/include/classes/cspan.inc.php
parent4f6965b12e09c357d57b03fae328dcbb9d384310 (diff)
downloadzabbix-0c61274fcf75d2fcc545b761d64d3307323afcd3.tar.gz
zabbix-0c61274fcf75d2fcc545b761d64d3307323afcd3.tar.xz
zabbix-0c61274fcf75d2fcc545b761d64d3307323afcd3.zip
- [DEV-91] added printable view for pages (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5204 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/classes/cspan.inc.php')
-rw-r--r--frontends/php/include/classes/cspan.inc.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/frontends/php/include/classes/cspan.inc.php b/frontends/php/include/classes/cspan.inc.php
index fee3f99f..9ef2e068 100644
--- a/frontends/php/include/classes/cspan.inc.php
+++ b/frontends/php/include/classes/cspan.inc.php
@@ -35,4 +35,21 @@
$this->tag_body_end = "";
}
}
+
+ class CDiv extends CTag
+ {
+/* public */
+ function CDiv($items=NULL,$class=NULL)
+ {
+ parent::CTag("div","yes");
+ $this->SetClass($class);
+ $this->AddItem($items);
+ $this->tag_body_start = "";
+
+ $this->tag_start= "";
+ $this->tag_end = "";
+ $this->tag_body_start = "";
+ $this->tag_body_end = "";
+ }
+ }
?>