Path: blob/master/src/applications/people/icon/PhabricatorPeopleIconSet.php
12256 views
<?php12final class PhabricatorPeopleIconSet3extends PhabricatorIconSet {45const ICONSETKEY = 'people';67public function getSelectIconTitleText() {8return pht('Choose User Icon');9}1011protected function newIcons() {12$specifications = self::getIconSpecifications();1314$icons = array();15foreach ($specifications as $spec) {16$icons[] = id(new PhabricatorIconSetIcon())17->setKey($spec['key'])18->setIcon($spec['icon'])19->setLabel($spec['name']);20}2122return $icons;23}2425public static function getDefaultIconKey() {26$specifications = self::getIconSpecifications();2728foreach ($specifications as $spec) {29if (idx($spec, 'default')) {30return $spec['key'];31}32}3334return null;35}3637public static function getIconIcon($key) {38$specifications = self::getIconSpecifications();39$map = ipull($specifications, 'icon', 'key');40return idx($map, $key);41}4243public static function getIconName($key) {44$specifications = self::getIconSpecifications();45$map = ipull($specifications, 'name', 'key');46return idx($map, $key);47}4849private static function getIconSpecifications() {50return self::getDefaultSpecifications();51}5253private static function getDefaultSpecifications() {54return array(55array(56'key' => 'person',57'icon' => 'fa-user',58'name' => pht('User'),59'default' => true,60),61array(62'key' => 'engineering',63'icon' => 'fa-code',64'name' => pht('Engineering'),65),66array(67'key' => 'operations',68'icon' => 'fa-space-shuttle',69'name' => pht('Operations'),70),71array(72'key' => 'resources',73'icon' => 'fa-heart',74'name' => pht('Resources'),75),76array(77'key' => 'camera',78'icon' => 'fa-camera-retro',79'name' => pht('Design'),80),81array(82'key' => 'music',83'icon' => 'fa-headphones',84'name' => pht('Musician'),85),86array(87'key' => 'spy',88'icon' => 'fa-user-secret',89'name' => pht('Spy'),90),91array(92'key' => 'android',93'icon' => 'fa-android',94'name' => pht('Bot'),95),96array(97'key' => 'relationships',98'icon' => 'fa-glass',99'name' => pht('Relationships'),100),101array(102'key' => 'administration',103'icon' => 'fa-fax',104'name' => pht('Administration'),105),106array(107'key' => 'security',108'icon' => 'fa-shield',109'name' => pht('Security'),110),111array(112'key' => 'logistics',113'icon' => 'fa-truck',114'name' => pht('Logistics'),115),116array(117'key' => 'research',118'icon' => 'fa-flask',119'name' => pht('Research'),120),121array(122'key' => 'analysis',123'icon' => 'fa-bar-chart-o',124'name' => pht('Analysis'),125),126array(127'key' => 'executive',128'icon' => 'fa-angle-double-up',129'name' => pht('Executive'),130),131array(132'key' => 'animal',133'icon' => 'fa-paw',134'name' => pht('Animal'),135),136);137}138139}140141142