15 lines
418 B
PHP
Executable File
15 lines
418 B
PHP
Executable File
<?php
|
|
$selfDir = dirname(__FILE__);
|
|
require_once $selfDir . '/../internal/helper.php';
|
|
require_once $selfDir . '/../internal/config.php';
|
|
|
|
$response = array(
|
|
'client_id' => $clientId,
|
|
'vuz_id' => $vuzId,
|
|
'api_domain_auth' => $apiDomainAuth,
|
|
'api_domain_vikon' => $apiDomen,
|
|
'api_domain_filemanager' => $filemanagerApiDomen,
|
|
'vuz_name' => $vuzName,
|
|
);
|
|
loadHeaders();
|
|
echo json_encode($response); |