Lines Matching defs:next
45 $next = false;
62 $this->nextStep($abrt, $next, $ok);
85 if ($next) {
87 name="step[' . $next . ']"
103 $this->displayProgressBar($next);
109 * @param string $next the next step
111 private function displayProgressBar($next)
120 if ($step == $next) $active = false;
139 * @param bool $next
142 private function nextStep(&$abrt, &$next, &$ok)
159 $next = false;
162 $next = 'download';
165 $next = '';
168 if ($ok = $this->helper->downloadTarball()) $next = 'unpack';
170 if ($ok = $this->helper->extractTarball()) $next = 'check';
172 if ($ok = $this->helper->checkPermissions()) $next = 'upgrade';
177 $next = 'done';
188 $next = 'version';