X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=setup%2Fclass_setupStep.inc;h=5364187e4544dffbd153126724dc06e345913ed3;hb=02af4f1b990e7dcac14976e535e8c290f8176521;hp=f69abdfa5242f5b85c9fbd313c14b0b5553c5572;hpb=280c0a7698f66faa55901caa5c60bdebd2cb5453;p=gosa.git diff --git a/setup/class_setupStep.inc b/setup/class_setupStep.inc index f69abdfa5..5364187e4 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,11 +29,19 @@ class setup_step var $is_enabled = false; var $is_completed = false; - var $attributes = array(); + var $header_image = "images/personal.png"; + var $attributes = array(); + var $parent = NULL; + var $dialog = FALSE; + function setup_step() { - } + } + + function execute() + { + } function save_object() { @@ -106,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: ?>