level = $level; $this->title = $title; $this->resource = $resource; $this->path = $path; $this->rpath = $rpath; } }; class cd_symbolic extends cd_innerlink { function cd_symbolic($level,$title,$resource,$path,$rpath) { $this->level = $level; $this->title = $title; $this->resource = $resource; $this->path = $path; $this->rpath = $rpath; } }; class cd_related extends cd_innerlink { function cd_related($level,$title,$resource,$path,$rpath) { $this->level = $level; $this->title = $title; $this->resource = $resource; $this->path = $path; $this->rpath = $rpath; } }; class cd_link extends cd_std { var $description; function cd_link($level,$title,$resource,$description) { $this->level = $level; $this->title = $title; $this->resource = $resource; $this->description = $description; } } class cd_topic { var $id = ''; var $catid = ''; var $title = ''; var $path = ''; var $description = ''; var $enccatpath = ''; var $category = array(); var $site = array(); var $related = array(); var $news = array(); var $editor = array(); var $parentdir = array(); function cd_topic($id,$catid,$title,$path,$description,$enccatpath) { $this->id = $id; $this->catid = $catid; $this->title = $title; $this->path = $path; $this->description = $description; $this->enccatpath = $enccatpath; } } ?>