t('Administrator'), self::APP_MANAGER => t('Manager'), self::APP_USER => t('User'), ); } /** * Get project roles * * @access public * @return array */ public function getProjectRoles() { return array( self::PROJECT_MANAGER => t('Project Manager'), self::PROJECT_MEMBER => t('Project Member'), self::PROJECT_VIEWER => t('Project Viewer'), ); } /** * Get role name * * @access public * @param string $role * @return string */ public function getRoleName($role) { $roles = $this->getApplicationRoles() + $this->getProjectRoles(); return isset($roles[$role]) ? $roles[$role] : t('Unknown'); } }