vendor/uvdesk/core-framework/Services/UVDeskService.php line 44

Open in your IDE?
  1. <?php
  2. namespace Webkul\UVDesk\CoreFrameworkBundle\Services;
  3. use Doctrine\ORM\EntityManagerInterface;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Webkul\UVDesk\CoreFrameworkBundle\Utils\TokenGenerator;
  7. use Symfony\Component\HttpFoundation\RequestStack;
  8. use Symfony\Component\DependencyInjection\ContainerInterface;
  9. use Webkul\UVDesk\SupportCenterBundle\Entity\KnowledgebaseWebsite;
  10. use Webkul\UVDesk\CoreFrameworkBundle\Services\UserService;
  11. class UVDeskService
  12. {
  13.     protected $container;
  14.     protected $requestStack;
  15.     protected $entityManager;
  16.     private $avoidArray = [
  17.         '!''@''#''$''%''^''&''*''('')''_''+''-''=''/''\\'':''{''}''['']''<''>''.''?'';''"''\''',''|',
  18.         '1''2''3''4''5''6''7''8''9''0',
  19.         ' true '' false ',
  20.         ' do '' did ',
  21.         ' is '' are '' am '' was '' were ',
  22.         ' has '' have '' had ',
  23.         ' will '' would '' shall '' should '' must '' can '' could ',
  24.         ' not '' never ',
  25.         ' neither '' either ',
  26.         ' the '' a '' an '' this '' that ',
  27.         ' here '' there ',
  28.         ' then '' when '' since ',
  29.         ' he '' him '' himself '' she '' her '' herself '' i '' me '' myself '' mine '' you '' your ' ,' yourself '' ur '' we '' ourself '' it '' its ',
  30.         ' for '' from '' on '' and '' in '' be '' to '' or '' of '' with ',
  31.         ' what '' why '' where '' who '' whom '' which ',
  32.         ' a '' b '' c '' d '' e ' ' f ' ' g ' ' h ' ' i ' ' j ' ' k ' ' l ' ' m ' ' n ' ' o ' ' p ' ' q ' ' r ' ' s ' ' t ' ' u ' ' v ' ' w ' ' x ' ' y ' ' z ' ,
  33.         '  ',
  34.     ];
  35.     public function __construct(ContainerInterface $containerRequestStack $requestStackEntityManagerInterface $entityManagerUserService $userService)
  36.     {
  37.         $this->container $container;
  38.         $this->requestStack $requestStack;
  39.         $this->entityManager $entityManager;
  40.         $this->userService $userService;
  41.     }
  42.     public function updatesLocales($locales)
  43.     {
  44.         $fileTranslation $this->container->get('kernel')->getProjectDir() . '/config/packages/translation.yaml';
  45.         $fileServices $this->container->get('kernel')->getProjectDir() . '/config/services.yaml';
  46.         // get file content and index
  47.         $fileTrans file($fileTranslation);
  48.         $fileServs file($fileServices);
  49.         foreach ($fileTrans as $index => $content) {
  50.             if (false !== strpos($content'default_locale')) {
  51.                 list($helpdesk_panel_locales$helpdesk_panel_text) = array($index$content);
  52.             }
  53.             if (false !== strpos($content'- ')) {
  54.                 list($helpdesk_panel_locales_fallback$helpdesk_panel_text_fallback) = array($index$content);
  55.             }
  56.         }
  57.         foreach ($fileServs as $indexs => $contents) {
  58.             if (false !== strpos($contents'locale')) {
  59.                 list($helpdesk_services_locales$helpdesk_services_text) = array($indexs$contents);
  60.             }
  61.         }
  62.         // save updated data in a variable ($updatedFileContent)
  63.         $updatedFileContent $fileTrans;
  64.         $updatedServicesFileContent $fileServs;
  65.         $updatedlocales = (null !== $helpdesk_panel_locales) ? substr($helpdesk_panel_text0strpos($helpdesk_panel_text'default_locale') + strlen('default_locale: ')) . $locales PHP_EOL'';
  66.         $updatedlocales_fallback = (null !== $helpdesk_panel_locales_fallback) ? substr($helpdesk_panel_text_fallback0strpos($helpdesk_panel_text_fallback'- ') + strlen('- ')) . $locales PHP_EOL'';
  67.         $updatedServiceslocales = (null !== $helpdesk_services_locales) ? substr($helpdesk_services_text0strpos($helpdesk_services_text'locale') + strlen('locale: ')) . $locales PHP_EOL'';
  68.         $updatedFileContent[$helpdesk_panel_locales] = $updatedlocales;
  69.         $updatedFileContent[$helpdesk_panel_locales_fallback] = $updatedlocales_fallback;
  70.         $updatedServicesFileContent[$helpdesk_services_locales] = $updatedServiceslocales;
  71.         // flush updated content in file
  72.         $status file_put_contents($fileTranslation$updatedFileContent);
  73.         $status1 file_put_contents($fileServices$updatedServicesFileContent);
  74.         return true;
  75.     }
  76.     public function getLocalesList() 
  77.     {
  78.         $translator $this->container->get('translator');
  79.         return  [
  80.             'en' => $translator->trans("English"),
  81.             'fr' => $translator->trans("French"),
  82.             'it' => $translator->trans("Italian"),
  83.             'ar' => $translator->trans("Arabic"),
  84.             'de' => $translator->trans("German"),
  85.             'es' => $translator->trans("Spanish"),
  86.             'tr' => $translator->trans("Turkish"),
  87.             'da' => $translator->trans("Danish"),
  88.             'zh' => $translator->trans("Chinese"),
  89.             'pl' => $translator->trans("Polish"),
  90.             'he' => $translator->trans("Hebrew"),
  91.         ];
  92.     }
  93.     public function getActiveLocales() 
  94.     {
  95.         $localesList $this->getLocalesList();
  96.         $activeLocales $this->container->getParameter("app_locales");
  97.         $explodeActiveLocales explode("|",$activeLocales);
  98.         return $explodeActiveLocales;
  99.     }
  100.     public function getLocales()
  101.     {
  102.         $localesList $this->getLocalesList();
  103.         $explodeActiveLocales $this->getActiveLocales();
  104.         $listingActiveLocales = array();
  105.         foreach ($explodeActiveLocales as $key => $value) {
  106.             $listingActiveLocales[$value] = $localesList[$value];
  107.         }
  108.         return $listingActiveLocales;
  109.     }
  110.     public function getDefaultLangauge() 
  111.     {
  112.         return $this->container->getParameter("kernel.default_locale");  
  113.     }
  114.     
  115.     public function getTimezones()
  116.     {
  117.         return \DateTimeZone::listIdentifiers();
  118.     }
  119.     public function getPrivileges() {
  120.         $agentPrivilegeCollection = [];
  121.         // $agentPrivilegeCollection = $this->entityManager->getRepository('UserBundle:AgentPrivilege')->findAll();
  122.         return $agentPrivilegeCollection;
  123.     }
  124.     public function getLocaleUrl($locale)
  125.     {
  126.         $request $this->requestStack->getCurrentRequest();
  127.         return str_replace('/' $request->getLocale() . '/''/' $locale '/'$request->getRequestUri());
  128.     }
  129.     
  130.     public function buildPaginationQuery(array $query = [])
  131.     {
  132.         $params = array();
  133.         $query['page'] = "replacePage";
  134.         if (isset($query['domain'])) unset($query['domain']);
  135.         if (isset($query['_locale'])) unset($query['_locale']);
  136.         
  137.         foreach ($query as $key => $value) {
  138.             $params[] = !isset($value) ? $key $key '/' str_replace('%2F''/'rawurlencode($value));
  139.         }
  140.         $http_query implode('/'$params);
  141.         
  142.         if (isset($query['new'])) {
  143.             $http_query str_replace('new/1''new'$http_query);
  144.         } elseif (isset($query['unassigned'])) {
  145.             $http_query str_replace('unassigned/1''unassigned'$http_query);
  146.         } elseif (isset($query['notreplied'])) {
  147.             $http_query str_replace('notreplied/1''notreplied'$http_query);
  148.         } elseif (isset($query['mine'])) {
  149.             $http_query str_replace('mine/1''mine'$http_query);
  150.         } elseif (isset($query['starred'])) {
  151.             $http_query str_replace('starred/1''starred'$http_query);
  152.         } elseif (isset($query['trashed'])) {
  153.             $http_query str_replace('trashed/1''trashed'$http_query);
  154.         }
  155.         
  156.         return $http_query;
  157.     }
  158.     public function getEntityManagerResult($entity$callFunction$args false$extraPrams false)
  159.     {
  160.         if ($extraPrams)
  161.             return $this->entityManager->getRepository($entity)
  162.                         ->$callFunction($args$extraPrams);
  163.         else
  164.             return $this->entityManager->getRepository($entity)
  165.                         ->$callFunction($args);
  166.     }
  167.     public function getValidBroadcastMessage($msg$format 'Y-m-d H:i:s')
  168.     {
  169.         $broadcastMessage = !empty($msg) ? json_decode($msgtrue) : false;
  170.         if (
  171.             ! empty($broadcastMessage
  172.             && isset($broadcastMessage['isActive']) 
  173.             && $broadcastMessage['isActive']
  174.         ) {
  175.             $timezone = new \DateTimeZone('Asia/Kolkata');
  176.             $nowTimestamp date('U');
  177.             if (array_key_exists('from'$broadcastMessage) && ($fromDateTime \DateTime::createFromFormat($format$broadcastMessage['from'], $timezone))) {
  178.                 $fromTimeStamp $fromDateTime->format('U');
  179.                 if ($nowTimestamp $fromTimeStamp) {
  180.                     return false;
  181.                 }
  182.             }
  183.             if (array_key_exists('to'$broadcastMessage) && ($toDateTime \DateTime::createFromFormat($format$broadcastMessage['to'], $timezone))) {
  184.                 $toTimeStamp $toDateTime->format('U');;
  185.                 if($nowTimestamp $toTimeStamp) {
  186.                     return false;
  187.                 }
  188.             }
  189.         } else {
  190.             return false;
  191.         }
  192.         // return valid broadcast message Array
  193.         return $broadcastMessage;
  194.     }
  195.     public function getConfigParameter($param)
  196.     {
  197.         if (
  198.             $param 
  199.             && $this->container->hasParameter($param)
  200.         ) {
  201.             return $this->container->getParameter($param);
  202.         } else {
  203.             return false;
  204.         }
  205.     }
  206.     
  207.     public function isDarkSkin($brandColor) {
  208.         $brandColor str_replace('#'''$brandColor);
  209.         if (strlen($brandColor) == 3)
  210.             $brandColor .= $brandColor;
  211.         $chars str_split($brandColor);
  212.         $a2fCount 0;
  213.         foreach ($chars as $key => $char) {
  214.             if(in_array($key, [024]) && in_array(strtoupper($char), ['A''B''C''D''E''F'])) {
  215.                 $a2fCount++;
  216.             }
  217.         }
  218.         if ($a2fCount >= 2)
  219.             return true;
  220.         else
  221.             return false;
  222.     }
  223.     public function getActiveConfiguration($websiteId)
  224.     {
  225.         $configurationRepo $this->entityManager->getRepository(KnowledgebaseWebsite::class);
  226.         $configuration $configurationRepo->findOneBy(['website' => $websiteId'isActive' => 1]);
  227.         return $configuration;
  228.     }
  229.     public function getSupportPrivelegesResources()
  230.     {
  231.         $translator $this->container->get('translator');
  232.         return [
  233.             'ticket' => [
  234.                 'ROLE_AGENT_CREATE_TICKET'                   => $translator->trans('Can create ticket'),
  235.                 'ROLE_AGENT_EDIT_TICKET'                     => $translator->trans('Can edit ticket'),
  236.                 'ROLE_AGENT_DELETE_TICKET'                   => $translator->trans('Can delete ticket'),
  237.                 'ROLE_AGENT_RESTORE_TICKET'                  => $translator->trans('Can restore trashed ticket'),
  238.                 'ROLE_AGENT_ASSIGN_TICKET'                   => $translator->trans('Can assign ticket'),
  239.                 'ROLE_AGENT_ASSIGN_TICKET_GROUP'             => $translator->trans('Can assign ticket group'),
  240.                 'ROLE_AGENT_UPDATE_TICKET_STATUS'            => $translator->trans('Can update ticket status'),
  241.                 'ROLE_AGENT_UPDATE_TICKET_PRIORITY'          => $translator->trans('Can update ticket priority'),
  242.                 'ROLE_AGENT_UPDATE_TICKET_TYPE'              => $translator->trans('Can update ticket type'),
  243.                 'ROLE_AGENT_ADD_NOTE'                        => $translator->trans('Can add internal notes to ticket'),
  244.                 'ROLE_AGENT_EDIT_THREAD_NOTE'                => $translator->trans('Can edit thread/notes'),
  245.                 'ROLE_AGENT_MANAGE_LOCK_AND_UNLOCK_THREAD'   => $translator->trans('Can lock/unlock thread'),
  246.                 'ROLE_AGENT_ADD_COLLABORATOR_TO_TICKET'      => $translator->trans('Can add collaborator to ticket'),
  247.                 'ROLE_AGENT_DELETE_COLLABORATOR_FROM_TICKET' => $translator->trans('Can delete collaborator from ticket'),
  248.                 'ROLE_AGENT_DELETE_THREAD_NOTE'              => $translator->trans('Can delete thread/notes'),
  249.                 'ROLE_AGENT_APPLY_WORKFLOW'                  => $translator->trans('Can apply prepared response on ticket'),
  250.                 'ROLE_AGENT_ADD_TAG'                         => $translator->trans('Can add ticket tags'),
  251.                 'ROLE_AGENT_DELETE_TAG'                      => $translator->trans('Can delete ticket tags')
  252.             ],
  253.             'advanced' => [
  254.                 'ROLE_AGENT_MANAGE_EMAIL_TEMPLATE'         => $translator->trans('Can manage email templates'),
  255.                 'ROLE_AGENT_MANAGE_GROUP'                  => $translator->trans('Can manage groups'),
  256.                 'ROLE_AGENT_MANAGE_SUB_GROUP'              => $translator->trans('Can manage Sub-Groups/ Teams'),
  257.                 'ROLE_AGENT_MANAGE_AGENT'                  => $translator->trans('Can manage agents'),
  258.                 'ROLE_AGENT_MANAGE_AGENT_PRIVILEGE'        => $translator->trans('Can manage agent privileges'),
  259.                 'ROLE_AGENT_MANAGE_TICKET_TYPE'            => $translator->trans('Can manage ticket types'),
  260.                 'ROLE_AGENT_MANAGE_CUSTOMER'               => $translator->trans('Can manage customers'),
  261.                 'ROLE_AGENT_MANAGE_WORKFLOW_MANUAL'        => $translator->trans('Can manage Prepared Responses'),
  262.                 'ROLE_AGENT_MANAGE_WORKFLOW_AUTOMATIC'     => $translator->trans('Can manage Automatic workflow'),
  263.                 'ROLE_AGENT_MANAGE_TAG'                    => $translator->trans('Can manage tags'),
  264.                 'ROLE_AGENT_MANAGE_KNOWLEDGEBASE'          => $translator->trans('Can manage knowledgebase'),
  265.                 'ROLE_AGENT_MANAGE_AGENT_ACTIVITY'         => $translator->trans("Can manage agent activity"),
  266.                 'ROLE_AGENT_MANAGE_MARKETING_ANNOUNCEMENT' => $translator->trans("Can manage marketing announcement"),
  267.                 'ROLE_AGENT_MANAGE_APP'                    => $translator->trans("Can manage apps"),
  268.             ]
  269.         ];
  270.     }
  271.     public function generateCsrfToken($intention)
  272.     {
  273.         $csrf $this->container->get('security.csrf.token_manager');
  274.         return $csrf->getToken($intention)->getValue();
  275.     }
  276.     /**
  277.      * This function will create content text from recived text, which we can use in meta content and as well in searching save like elastic
  278.      * @param  string $text String text
  279.      * @param  no. $length max return length string (which will convert to array)
  280.      * @param  boolean $returnArray what return type required
  281.      * @return string/ array comma seperated/ []
  282.      */
  283.     public function createConentToKeywords($text$length 255$returnArray false)
  284.     {
  285.         //to remove all tags from text, if any tags are in encoded form
  286.         $newText preg_replace('/[\s]+/'' 'str_replace($this->avoidArray' 'strtolower(strip_tags(html_entity_decode(strip_tags($text))))));
  287.         if ($length)
  288.             $newText substr($newText0$length);
  289.         return ($returnArray explode(' '$newText) : str_replace(' '','$newText));
  290.     }
  291.     public function requestHeadersSent()
  292.     {
  293.         return headers_sent() ? true false;
  294.     }
  295.     /**
  296.      * get current prefixes of member panel and knowledgebase
  297.      */
  298.     public function getCurrentWebsitePrefixes()
  299.     {
  300.         $filePath $this->container->get('kernel')->getProjectDir() . '/config/packages/uvdesk.yaml';
  301.         
  302.         // get file content and index
  303.         $file file($filePath);
  304.         foreach ($file as $index => $content) {
  305.             if (false !== strpos($content'uvdesk_site_path.member_prefix')) {
  306.                 list($member_panel_line$member_panel_text) = array($index$content);
  307.             }
  308.             if (false !== strpos($content'uvdesk_site_path.knowledgebase_customer_prefix')) {
  309.                 list($customer_panel_line$customer_panel_text) = array($index$content);
  310.             }
  311.         }
  312.         $memberPrefix substr($member_panel_textstrpos($member_panel_text'uvdesk_site_path.member_prefix') + strlen('uvdesk_site_path.member_prefix: '));
  313.         $knowledgebasePrefix substr($customer_panel_textstrpos($customer_panel_text'uvdesk_site_path.knowledgebase_customer_prefix') + strlen('uvdesk_site_path.knowledgebase_customer_prefix: '));
  314.         return [
  315.             'memberPrefix'        => trim(preg_replace('/\s\s+/'' '$memberPrefix)),
  316.             'knowledgebasePrefix' => trim(preg_replace('/\s\s+/'' '$knowledgebasePrefix)),
  317.         ];
  318.     }
  319.     /**
  320.      * update your website prefixes
  321.      */
  322.     public function updateWebsitePrefixes($member_panel_prefix$knowledgebase_prefix)
  323.     {
  324.         $filePath $this->container->get('kernel')->getProjectDir() . '/config/packages/uvdesk.yaml';
  325.         $website_prefixes = [
  326.             'member_prefix'   => $member_panel_prefix,
  327.             'customer_prefix' => $knowledgebase_prefix,
  328.         ];
  329.         
  330.         // get file content and index
  331.         $file file($filePath);
  332.         foreach ($file as $index => $content) {
  333.             if (false !== strpos($content'uvdesk_site_path.member_prefix')) {
  334.                 list($member_panel_line$member_panel_text) = array($index$content);
  335.             }
  336.             if (false !== strpos($content'uvdesk_site_path.knowledgebase_customer_prefix')) {
  337.                 list($customer_panel_line$customer_panel_text) = array($index$content);
  338.             }
  339.         }
  340.         // save updated data in a variable ($updatedFileContent)
  341.         $updatedFileContent $file;
  342.         // get old member-prefix
  343.         $oldMemberPrefix substr($member_panel_textstrpos($member_panel_text'uvdesk_site_path.member_prefix') + strlen('uvdesk_site_path.member_prefix: '));
  344.         $oldMemberPrefix preg_replace('/([\r\n\t])/',''$oldMemberPrefix);
  345.         $updatedPrefixForMember = (null !== $member_panel_line) ? substr($member_panel_text0strpos($member_panel_text'uvdesk_site_path.member_prefix') + strlen('uvdesk_site_path.member_prefix: ')) . $website_prefixes['member_prefix'] . PHP_EOL'';
  346.         $updatedPrefixForCustomer = (null !== $customer_panel_line) ? substr($customer_panel_text0strpos($customer_panel_text'uvdesk_site_path.knowledgebase_customer_prefix') + strlen('uvdesk_site_path.knowledgebase_customer_prefix: ')) . $website_prefixes['customer_prefix'] . PHP_EOL '';
  347.         $updatedFileContent[$member_panel_line] = $updatedPrefixForMember;
  348.         $updatedFileContent[$customer_panel_line] = $updatedPrefixForCustomer;
  349.         // flush updated content in file
  350.         file_put_contents($filePath$updatedFileContent);
  351.         $router $this->container->get('router');
  352.         $knowledgebaseURL $router->generate('helpdesk_knowledgebase');
  353.         $memberLoginURL $router->generate('helpdesk_member_handle_login');
  354.         $memberLoginURL str_replace($oldMemberPrefix$website_prefixes['member_prefix'], $memberLoginURL);
  355.         return $collectionURL = [
  356.             'memberLogin'   => $memberLoginURL,
  357.             'knowledgebase' => $knowledgebaseURL,
  358.         ];
  359.     }
  360.     public static function getTimeFormats()
  361.     {
  362.         return array(
  363.             'm-d-y G:i'    => 'm-d-y G:i (01-15-1991 13:00)',
  364.             'm-d-y h:ia'   => 'm-d-y h:ia (01-15-1991 01:00pm)',
  365.             'd-m-y G:i'    => 'd-m-y G:i (15-01-1991 13:00)',
  366.             'd-m-y h:ia'   => 'd-m-y h:ia (15-01-1991 01:00pm)',
  367.             'd-m G:i'      => 'd-m G:i (15-01 13:00)',
  368.             'd-m h:ia'     => 'd-m h:ia (15-01 01:00pm)',
  369.             'd-M G:i'      => 'd-M G:i (15-Jan 13:00)',
  370.             'd-M h:ia'     => 'd-M h:ia (15-Jan 01:00pm)',
  371.             'D-m G:i'      => 'D-m G:i (Mon-01 13:00)',
  372.             'D-m h:ia'     => 'D-m h:ia (Mon-01 01:00pm)',
  373.             'Y-m-d H:i:sa' => 'Y-m-d H:i:s (1991-01-15 01:00:30pm)',
  374.         );
  375.     }
  376.     public function generateCompleteLocalResourcePathUri($resource)
  377.     {
  378.         $resourceUriComponent parse_url($resource);
  379.         if (!empty($resourceUriComponent['scheme'])) {
  380.             return $resource;
  381.         }
  382.         if (empty($this->completeLocalResourcePathUri)) {
  383.             $router $this->container->get('router');
  384.     
  385.             $scheme $router->getContext()->getScheme();
  386.             $siteurl $this->container->getParameter('uvdesk.site_url');
  387.     
  388.             $baseurl "$scheme://$siteurl";
  389.             $urlComponents parse_url($baseurl);
  390.             $completeLocalResourcePathUri "{$urlComponents['scheme']}://{$urlComponents['host']}";
  391.             if (!empty($urlComponents['path'])) {
  392.                 $completeLocalResourcePathUri .= $urlComponents['path'];
  393.             }
  394.             if (substr($completeLocalResourcePathUri, -1) == '/') {
  395.                 $completeLocalResourcePathUri substr($completeLocalResourcePathUri0, -1);
  396.             }
  397.     
  398.             $this->completeLocalResourcePathUri $completeLocalResourcePathUri;
  399.         }
  400.         if ($resource[0] != '/') {
  401.             $resource "/$resource";
  402.         }
  403.         return $this->completeLocalResourcePathUri $resource;
  404.     }
  405.     public function getAvailableUserAccessScopes($user$userInstance)
  406.     {
  407.         $supportRole $userInstance->getSupportRole();
  408.         $isAdminAccessGranted in_array($supportRole->getId(), [12]) ? true false;
  409.         $availableSupportPrivileges $this->getSupportPrivelegesResources();
  410.         $resolvedAvailableSupportPrivileges = [];
  411.         foreach ($availableSupportPrivileges as $index => $collection) {
  412.             foreach ($collection as $privilegeId => $privilegeDescription) {
  413.                 $resolvedAvailableSupportPrivileges[] = $privilegeId;
  414.             }
  415.         }
  416.         if (false == $isAdminAccessGranted) {
  417.             $assignedUserSupportPrivileges $this->userService->getAssignedUserSupportPrivilegeDetails($user$userInstance);
  418.             $resolvedAssignedUserSupportPrivileges = [];
  419.             foreach ($assignedUserSupportPrivileges as $assignedSupportPrivilege) {
  420.                 foreach ($assignedSupportPrivilege['privileges'] as $privilegeId) {
  421.                     $resolvedAssignedUserSupportPrivileges[] = $privilegeId;
  422.                 }
  423.             }
  424.             return array_map(function ($supportPrivilege) {
  425.                 return strtolower(str_replace('ROLE_AGENT_'''$supportPrivilege));
  426.             }, $resolvedAssignedUserSupportPrivileges);
  427.         }
  428.         
  429.         return array_map(function ($supportPrivilege) {
  430.             return strtolower(str_replace('ROLE_AGENT_'''$supportPrivilege));
  431.         }, $resolvedAvailableSupportPrivileges);
  432.     }
  433. }