/**
  * Show wizard form of the current step
  */
 function showWizard($step)
 {
     echo "<div class='consumables_wizard'>";
     switch ($step) {
         case 'consumablerequest':
             $consumablerequest = new PluginConsumablesRequest();
             $consumablerequest->showConsumableRequest();
             break;
         case 'consumablevalidation':
             $consumablevalidation = new PluginConsumablesValidation();
             $consumablevalidation->showConsumableValidation();
             break;
     }
     echo "</div>";
 }