Files
fusionpbx/app/active_conferences/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

37 lines
2.1 KiB
PHP

<?php
$y=0;
$apps[$x]['menu'][$y]['title']['en-us'] = "Active Conferences";
$apps[$x]['menu'][$y]['title']['en-gb'] = "Active Conferences";
$apps[$x]['menu'][$y]['title']['ar-eg'] = "المؤتمرات النشطة";
$apps[$x]['menu'][$y]['title']['de-at'] = "Aktive Konferenzen";
$apps[$x]['menu'][$y]['title']['de-ch'] = "Aktive Konferenzen";
$apps[$x]['menu'][$y]['title']['de-de'] = "Aktive Konferenzen";
$apps[$x]['menu'][$y]['title']['es-cl'] = "Conferencias Activas";
$apps[$x]['menu'][$y]['title']['es-mx'] = "Conferencias activas";
$apps[$x]['menu'][$y]['title']['fr-ca'] = "Conférences actives";
$apps[$x]['menu'][$y]['title']['fr-fr'] = "Conférences en cours";
$apps[$x]['menu'][$y]['title']['he-il'] = "כנסים פעילים";
$apps[$x]['menu'][$y]['title']['it-it'] = "Conferenze attive";
$apps[$x]['menu'][$y]['title']['ka-ge'] = "აქტიური კონფერენციები";
$apps[$x]['menu'][$y]['title']['nl-nl'] = "Aktieve conferenties";
$apps[$x]['menu'][$y]['title']['pl-pl'] = "Aktywne rozmowy konferencyjne";
$apps[$x]['menu'][$y]['title']['pt-br'] = "Conferência ativa";
$apps[$x]['menu'][$y]['title']['pt-pt'] = "Conferencias Activas";
$apps[$x]['menu'][$y]['title']['ro-ro'] = "Conferințe active";
$apps[$x]['menu'][$y]['title']['ru-ru'] = "Конференции Активные";
$apps[$x]['menu'][$y]['title']['sv-se'] = "Aktiva Konferenser";
$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'] = "b3cdd852-1382-4d7f-9676-f25b133971f2";
$apps[$x]['menu'][$y]['parent_uuid'] = "0438b504-8613-7887-c420-c837ffb20cb1";
$apps[$x]['menu'][$y]['category'] = "internal";
$apps[$x]['menu'][$y]['icon'] = "";
$apps[$x]['menu'][$y]['path'] = "/app/active_conferences/active_conferences.php";
$apps[$x]['menu'][$y]['order'] = "";
$apps[$x]['menu'][$y]['groups'][] = "admin";
$apps[$x]['menu'][$y]['groups'][] = "superadmin";
$y++;