Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/view/phui/PHUILauncherView.php
12249 views
1
<?php
2
3
final class PHUILauncherView
4
extends AphrontTagView {
5
6
protected function getTagName() {
7
return 'div';
8
}
9
10
protected function getTagAttributes() {
11
$classes = array();
12
13
$classes[] = 'phui-launcher-view';
14
15
return array(
16
'class' => implode(' ', $classes),
17
);
18
}
19
20
}
21
22