Lines Matching full:status
32 "Status codes:\n" .
49 $options->registerOption('filter', 'Filter by this status', 'f', 'status', 'list');
220 foreach ($processed as $id => $status) {
221 if ($status == Installer::STATUS_INSTALLED) {
223 } elseif ($status == Installer::STATUS_UPDATED) {
274 * @param string $filter filter for this status
282 $status = '';
286 $status = 'i';
289 $status .= 'u';
293 if ($ext->isGitControlled()) $status = 'g';
295 $status = 'b';
303 $status .= 'd';
311 if ($filter && strpos($status, $filter) === false) {
316 if ($notices[Notice::SECURITY]) $status .= Notice::symbol(Notice::SECURITY);
317 if ($notices[Notice::ERROR]) $status .= Notice::symbol(Notice::ERROR);
318 if ($notices[Notice::WARNING]) $status .= Notice::symbol(Notice::WARNING);
319 if ($notices[Notice::INFO]) $status .= Notice::symbol(Notice::INFO);
325 $status,