Code

Added additional graphs
[gosa.git] / gosa-core / setup / class_setupStep.inc
index f4cd9ebc3d3ce9f33472a084a5d6f719e32279cd..3d350b343fb05566686d2a64fa01677436635930 100644 (file)
@@ -28,8 +28,9 @@ class setup_step extends plugin
   var $is_active    = false;
   var $is_enabled   = false;
   var $is_completed = false;
+  var $b_displayCheckbutton = false;
 
-  var $header_image = "images/user.png";
+  var $header_image = "images/setup/user.png";
 
   var $attributes   = array();
   var $parent       = NULL;
@@ -115,15 +116,16 @@ class setup_step extends plugin
     return($tmp);
   }
 
-  function print_header()
+  function getTitle()
   {
-    $image= get_template_path($this->header_image);
-    $display= "<div style='padding:3px;'>";
-    $display.= "  <p class=\"center\" style=\"margin:0px 0px 0px 5px;padding:0px;font-size:24px;font-weight:bold;\"><img class=\"center\" src=\"$image\" align=\"middle\" alt=\"*\">&nbsp;".$this->s_title_long."</p>\n";
-    $display.= "</div>\n";
+      return($this->s_title_long);
+  }
 
-    return($display);
+  function getImage()
+  {
+      return($this->header_image);
   }
+
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: