s_title); } function get_long_title() { return($this->s_title_long); } function get_small_info() { return($this->s_info); } function is_active() { return($this->is_active); } function is_enabled() { return($this->is_enabled); } function is_completed() { return($this->is_completed); } function set_active($value = TRUE) { if($value){ $this->is_active = TRUE; }else{ $this->is_active = FALSE; } } function set_enabled($value = TRUE) { if($value){ $this->is_enabled = TRUE; }else{ $this->is_enabled = FALSE; } } function set_completed($value = TRUE) { if($value){ $this->is_completed = TRUE; }else{ $this->is_completed = FALSE; } } /* Return attributes handled by this setup step */ function get_attributes() { $tmp = array(); foreach($this->attributes as $attr){ $tmp[$attr] = $this->$attr; } return($tmp); } function print_header() { $image= get_template_path($this->header_image); $display= "
"; $display.= "

\"*\" ".$this->s_title_long."

\n"; $display.= "
\n"; return($display); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>