function GBPWizardTabView(&$parent, $is_default = NULL, $title = 'Wizards')
 {
     global $textarray;
     #
     #	Get the strings and merge into the textarray before we get the steps...
     #
     $strings = $this->get_strings();
     $textarray = array_merge($strings, $textarray);
     #
     #	Now get the steps...
     #
     $this->installation_steps = $this->get_steps();
     // Call the parent constructor
     GBPAdminTabView::GBPAdminTabView($title, 'wizard', $parent, $is_default);
 }
 function MLPArticleView($title, $event, &$parent, $is_default = NULL)
 {
     $this->statuses = array(1 => gTxt('draft'), 2 => gTxt('hidden'), 3 => gTxt('pending'), 4 => gTxt('live'), 5 => gTxt('sticky'));
     GBPAdminTabView::GBPAdminTabView($title, $event, $parent, $is_default);
 }