_isComplete; } function isRedoable() { return false; } function setComplete($complete) { $this->_isComplete = $complete; } function canBeVisited() { return true; } function setInError($inError) { $this->_isInError = $inError; } function isInError() { return $this->_isInError; } function stepName() { return _('Unknown'); } function setStepNumber($stepNumber) { $this->_stepNumber = $stepNumber; } function getStepNumber() { return $this->_stepNumber; } function processRequest() { return true; /* true means continue rendering the page */ } function loadTemplateData(&$templateData) { return null; } function getActions() { return array(); } function setIsLastStep($lastStep) { $this->_isLastStep = $lastStep; } function isLastStep() { return $this->_isLastStep; } function loadGalleryConfig($config) { } function sanitize($string) { if (get_magic_quotes_gpc()) { $string = stripslashes($string); } return $string; } function isRelevant() { return true; } function isOptional() { return false; } function resetL10Domain() { /* Reset to installer domain in case we called some code that may have done translation */ if (function_exists('textdomain')) { textdomain('gallery2_install'); } } } ?>