Path: blob/master/src/applications/conpherence/constants/ConpherenceRoomSettings.php
12256 views
<?php12final class ConpherenceRoomSettings extends ConpherenceConstants {34const SOUND_RECEIVE = 'receive';5const SOUND_MENTION = 'mention';67const DEFAULT_RECEIVE_SOUND = 'tap';8const DEFAULT_MENTION_SOUND = 'alert';9const DEFAULT_NO_SOUND = 'none';1011const COLOR_LIGHT = 'light';12const COLOR_BLUE = 'blue';13const COLOR_INDIGO = 'indigo';14const COLOR_PEACH = 'peach';15const COLOR_GREEN = 'green';16const COLOR_PINK = 'pink';1718public static function getSoundMap() {19return array(20'none' => array(21'name' => pht('No Sound'),22'rsrc' => '',23),24'alert' => array(25'name' => pht('Alert'),26'rsrc' => celerity_get_resource_uri('/rsrc/audio/basic/alert.mp3'),27),28'bing' => array(29'name' => pht('Bing'),30'rsrc' => celerity_get_resource_uri('/rsrc/audio/basic/bing.mp3'),31),32'pock' => array(33'name' => pht('Pock'),34'rsrc' => celerity_get_resource_uri('/rsrc/audio/basic/pock.mp3'),35),36'tap' => array(37'name' => pht('Tap'),38'rsrc' => celerity_get_resource_uri('/rsrc/audio/basic/tap.mp3'),39),40'ting' => array(41'name' => pht('Ting'),42'rsrc' => celerity_get_resource_uri('/rsrc/audio/basic/ting.mp3'),43),44);45}4647public static function getDropdownSoundMap() {48$map = self::getSoundMap();49return ipull($map, 'name');50}5152public static function getThemeMap() {53return array(54self::COLOR_LIGHT => pht('Light'),55self::COLOR_BLUE => pht('Blue'),56self::COLOR_INDIGO => pht('Indigo'),57self::COLOR_PEACH => pht('Peach'),58self::COLOR_GREEN => pht('Green'),59self::COLOR_PINK => pht('Pink'),60);61}6263public static function getThemeClass($theme) {64return 'conpherence-theme-'.$theme;65}666768}697071