Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/check/PhabricatorSetupCheckBaseURI.php
| Show First 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | $message = pht( | ||||
| '%s'. | '%s'. | ||||
| "\n\n". | "\n\n". | ||||
| 'To configure the base URI, run the command shown below.', | 'To configure the base URI, run the command shown below.', | ||||
| $base_uri_guess); | $base_uri_guess); | ||||
| $this | $this | ||||
| ->newIssue('config.phabricator.base-uri') | ->newIssue('config.phabricator.base-uri') | ||||
| ->setShortName(pht('No Base URI')) | ->setShortName(pht('No Base URI')) | ||||
| ->setName(pht("Base URI Not Configured")) | ->setName(pht('Base URI Not Configured')) | ||||
| ->setSummary($summary) | ->setSummary($summary) | ||||
| ->setMessage($message) | ->setMessage($message) | ||||
| ->addCommand( | ->addCommand( | ||||
| hsprintf( | hsprintf( | ||||
| '<tt>phabricator/ $</tt> %s', | '<tt>phabricator/ $</tt> %s', | ||||
| csprintf( | csprintf( | ||||
| './bin/config set phabricator.base-uri %s', | './bin/config set phabricator.base-uri %s', | ||||
| $base_uri_guess))); | $base_uri_guess))); | ||||
| } | } | ||||
| } | } | ||||