X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=setup%2Fclass_setupStep.inc;h=b7438ea703858494503ad9ad818ad6f4b6436171;hb=1136e57c6caea14fc33e35256bbb523e28fb38a5;hp=cbbb73926bd165345ca3b290e1b3cbc2267a421d;hpb=f6c6299f57889e70a6d01d296bc5083f1a297274;p=gosa.git diff --git a/setup/class_setupStep.inc b/setup/class_setupStep.inc index cbbb73926..b7438ea70 100644 --- a/setup/class_setupStep.inc +++ b/setup/class_setupStep.inc @@ -20,7 +20,7 @@ */ -class setup_step +class setup_step extends plugin { var $s_title = "Still undefined"; var $s_title_long = "This is a still undefined long title"; @@ -29,9 +29,12 @@ class setup_step var $is_enabled = false; var $is_completed = false; + var $header_image = "images/personal.png"; + var $attributes = array(); var $parent = NULL; - + var $dialog = FALSE; + function setup_step() { } @@ -111,9 +114,17 @@ class setup_step } 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: ?>