Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4875 | Rev 4877 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
4858 stevensc 2
 
4113 efrain 3
use LeadersLinked\Library\Functions;
4
 
4876 stevensc 5
$currentNetworkHelper = $this->currentNetworkHelper();
6
$currentNetwork = $currentNetworkHelper->getNetwork();
7
 
1 www 8
$emojione_image_path_png  = $this->basePath('vendors/smiley/assets/png/');
9
$contactsJson = json_encode($contacts);
4113 efrain 10
 
11
$timezones = [];
12
$records = Functions::getAllTimeZones();
4858 stevensc 13
foreach ($records as $record) {
4113 efrain 14
    $record = trim($record);
4858 stevensc 15
    $timezones[$record] = $record;
4113 efrain 16
}
17
 
4858 stevensc 18
$timezones = json_encode($timezones);
4113 efrain 19
 
1 www 20
$js = <<<JS
4859 stevensc 21
const contacts = $contactsJson;
1 www 22
const emojione_image_path_png = "$emojione_image_path_png";
4865 stevensc 23
const timezones = $timezones;
4872 stevensc 24
const timezone = '$timezone';
1 www 25
JS;
4122 stevensc 26
 
1 www 27
$this->inlineScript()->appendScript($js);
28
$this->inlineScript()->appendFile('/react-bundles/chat/chatBundle.js');
29
?>
30
 
31
<!-- $is_chat  -->
665 steven 32
<div id="react-chat"></div>