Files
fusionpbx/app/conference_centers/app_menu.php
frytimo 46d3eb18ea Active conferences (#7684)
* Add active conferences with web sockets

* Buttons mostly working

* Convert all methods, function, variable, const to snake case instead of standards.

* Add default settings for customized control

* Add customizable settings

* More debugging default settings added

* Add better authentication handling for websocket connections
These methods were added:
- on_ws_authenticated can be overridden in the child class if there are tasks that need to be done after authentication.
- handle_ws_authenticated was added in the parent class

Handle methods are called by the this class and then their respective 'on_ws_' method is then called.

* Mute All now working

* Add PHPDoc block comments

* More PHPDoc to better describe class and variables

* Fix accidental removal of function during PHPDoc block edits

* Remove the variable type declaration for PHP 7.1 compatibility

* Update conferences with more websocket communication to replace AJAX calls.

* Ensure interface is loaded when no members

* Move color settings to theme category

* Update page view to default settings changes
2025-12-29 22:30:08 -07:00

71 lines
4.0 KiB
PHP

<?php
$y=0;
$apps[$x]['menu'][$y]['title']['en-us'] = "Conference Centers";
$apps[$x]['menu'][$y]['title']['en-gb'] = "Conference Centers";
$apps[$x]['menu'][$y]['title']['ar-eg'] = "مراكز المؤتمرات";
$apps[$x]['menu'][$y]['title']['de-at'] = "Konferenz Zentrale";
$apps[$x]['menu'][$y]['title']['de-ch'] = "Konferenzzentren";
$apps[$x]['menu'][$y]['title']['de-de'] = "Konferenz Zentrale";
$apps[$x]['menu'][$y]['title']['es-cl'] = "Cent. de Conferencias";
$apps[$x]['menu'][$y]['title']['es-mx'] = "Conference Centers";
$apps[$x]['menu'][$y]['title']['fr-ca'] = "Centres de conférences";
$apps[$x]['menu'][$y]['title']['fr-fr'] = "Centre de Conférences";
$apps[$x]['menu'][$y]['title']['he-il'] = "מרכזי כנסים";
$apps[$x]['menu'][$y]['title']['it-it'] = "Centro Conferenze";
$apps[$x]['menu'][$y]['title']['ka-ge'] = "კონფერენც-ცენტრი";
$apps[$x]['menu'][$y]['title']['nl-nl'] = "Conferentie centra";
$apps[$x]['menu'][$y]['title']['pl-pl'] = "Centrum Konferencyjne";
$apps[$x]['menu'][$y]['title']['pt-br'] = "Centro de Conferência";
$apps[$x]['menu'][$y]['title']['pt-pt'] = "Conferencias";
$apps[$x]['menu'][$y]['title']['ro-ro'] = "Centre de conferințe";
$apps[$x]['menu'][$y]['title']['ru-ru'] = "Конференц-центр";
$apps[$x]['menu'][$y]['title']['sv-se'] = "Konferenscenter";
$apps[$x]['menu'][$y]['title']['uk-ua'] = "Конференц-центр";
$apps[$x]['menu'][$y]['title']['zh-cn'] = "会议中心";
$apps[$x]['menu'][$y]['title']['ja-jp'] = "カンファレンスセンター";
$apps[$x]['menu'][$y]['title']['ko-kr'] = "컨퍼런스 센터";
$apps[$x]['menu'][$y]['uuid'] = "95f88726-4706-43f0-b52b-9504a0b8046f";
$apps[$x]['menu'][$y]['parent_uuid'] = "fd29e39c-c936-f5fc-8e2b-611681b266b5";
$apps[$x]['menu'][$y]['category'] = "internal";
$apps[$x]['menu'][$y]['icon'] = "";
$apps[$x]['menu'][$y]['path'] = "/app/conference_centers/conference_centers.php";
$apps[$x]['menu'][$y]['order'] = "";
$apps[$x]['menu'][$y]['groups'][] = "superadmin";
$apps[$x]['menu'][$y]['groups'][] = "admin";
$y++;
$apps[$x]['menu'][$y]['title']['en-us'] = "Conference Rooms";
$apps[$x]['menu'][$y]['title']['en-gb'] = "Conference Rooms";
$apps[$x]['menu'][$y]['title']['ar-eg'] = "غرف المؤتمرات";
$apps[$x]['menu'][$y]['title']['de-at'] = "Konferenzräume";
$apps[$x]['menu'][$y]['title']['de-ch'] = "Konferenzräume";
$apps[$x]['menu'][$y]['title']['de-de'] = "Konferenzräume";
$apps[$x]['menu'][$y]['title']['es-cl'] = "Salas de Conferencias";
$apps[$x]['menu'][$y]['title']['es-mx'] = "Salas de Conferencias";
$apps[$x]['menu'][$y]['title']['fr-ca'] = "Salles de conférences";
$apps[$x]['menu'][$y]['title']['fr-fr'] = "Salles de Conférences";
$apps[$x]['menu'][$y]['title']['he-il'] = "חדרי כנסים";
$apps[$x]['menu'][$y]['title']['it-it'] = "Sale Conferenze";
$apps[$x]['menu'][$y]['title']['ka-ge'] = "კონფერენციის ოთახები";
$apps[$x]['menu'][$y]['title']['nl-nl'] = "Conferentie kamers";
$apps[$x]['menu'][$y]['title']['pl-pl'] = "Sale Konferencyjne";
$apps[$x]['menu'][$y]['title']['pt-br'] = "Salas de Conferência";
$apps[$x]['menu'][$y]['title']['pt-pt'] = "Salas de Conferências";
$apps[$x]['menu'][$y]['title']['ro-ro'] = "Săli de conferințe";
$apps[$x]['menu'][$y]['title']['ru-ru'] = "Конференц-залы";
$apps[$x]['menu'][$y]['title']['sv-se'] = "Konferensrum";
$apps[$x]['menu'][$y]['title']['uk-ua'] = "Конференц-зали";
$apps[$x]['menu'][$y]['title']['zh-cn'] = "会议室";
$apps[$x]['menu'][$y]['title']['ja-jp'] = "会議室";
$apps[$x]['menu'][$y]['title']['ko-kr'] = "컨퍼런스 룸";
$apps[$x]['menu'][$y]['uuid'] = "b99cb768-ca19-4374-a954-02e344313d84";
$apps[$x]['menu'][$y]['parent_uuid'] = "fd29e39c-c936-f5fc-8e2b-611681b266b5";
$apps[$x]['menu'][$y]['category'] = "internal";
$apps[$x]['menu'][$y]['icon'] = "";
$apps[$x]['menu'][$y]['path'] = "/app/conference_centers/conference_rooms.php";
$apps[$x]['menu'][$y]['order'] = "";
$apps[$x]['menu'][$y]['groups'][] = "user";
$y++;
?>