| 1 |
www |
1 |
<?php
|
|
|
2 |
$acl = $this->viewModel()->getRoot()->getVariable('acl');
|
|
|
3 |
$currentUser = $this->currentUserHelper();
|
|
|
4 |
$roleName = $currentUser->getUserTypeId();
|
|
|
5 |
|
|
|
6 |
$route = $this->url('company/i-work-with');
|
|
|
7 |
|
| 5169 |
stevensc |
8 |
$js = <<<JS
|
|
|
9 |
const LABELS = {
|
|
|
10 |
SEARCH: 'LABEL_SEARCH',
|
|
|
11 |
COMPANIES_I_WORK_WITH: 'LABEL_COMPANIES_I_WORK_WITH',
|
|
|
12 |
VIEW_COMPANY: 'LABEL_VIEW_COMPANY',
|
|
|
13 |
LEAVE: 'LABEL_COMPANY_LEAVE',
|
|
|
14 |
DATATABLE_SZERORECORDS: 'LABEL_DATATABLE_SZERORECORDS'
|
|
|
15 |
}
|
|
|
16 |
JS;
|
|
|
17 |
|
|
|
18 |
$this->inlineScript()->appendScript($js);
|
| 3536 |
stevensc |
19 |
$this->headLink()->appendStylesheet('/look-and-field/profile.css');
|
| 1 |
www |
20 |
$this->inlineScript()->appendFile('/react-bundles/company/i-work-with/iWorkWithBundle.js');
|
|
|
21 |
?>
|
|
|
22 |
|
|
|
23 |
<div id="react_companies_i_work_with">
|
|
|
24 |
<div class="process-comm" id="paginator-process-comm">
|
|
|
25 |
<div class="spinner">
|
|
|
26 |
<div class="bounce1"></div>
|
|
|
27 |
<div class="bounce2"></div>
|
|
|
28 |
<div class="bounce3"></div>
|
|
|
29 |
</div>
|
|
|
30 |
</div>
|
|
|
31 |
</div>
|