diff options
Diffstat (limited to 'frontends/php/include/classes/cspan.inc.php')
| -rw-r--r-- | frontends/php/include/classes/cspan.inc.php | 17 |
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 = ""; + } + } ?> |
