Changeset View
Changeset View
Standalone View
Standalone View
src/applications/meta/view/PhabricatorApplicationLaunchView.php
| Show All 37 Lines | protected function getTagContent() { | ||||
| if ($application) { | if ($application) { | ||||
| $content[] = phutil_tag( | $content[] = phutil_tag( | ||||
| 'span', | 'span', | ||||
| array( | array( | ||||
| 'class' => 'phabricator-application-launch-name', | 'class' => 'phabricator-application-launch-name', | ||||
| ), | ), | ||||
| $application->getName()); | $application->getName()); | ||||
| if ($application->isBeta()) { | |||||
| $content[] = javelin_tag( | |||||
| 'span', | |||||
| array( | |||||
| 'aural' => false, | |||||
| 'class' => 'phabricator-application-beta', | |||||
| ), | |||||
| "\xCE\xB2"); | |||||
| } | |||||
| $content[] = phutil_tag( | $content[] = phutil_tag( | ||||
| 'span', | 'span', | ||||
| array( | array( | ||||
| 'class' => 'phabricator-application-launch-description', | 'class' => 'phabricator-application-launch-description', | ||||
| ), | ), | ||||
| $application->getShortDescription()); | $application->getShortDescription()); | ||||
| $counts = array(); | $counts = array(); | ||||
| ▲ Show 20 Lines • Show All 82 Lines • Show Last 20 Lines | |||||