40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
<?php defined('BLUDIT') or die('Bludit CMS.');
|
|
|
|
// ============================================================================
|
|
// Check role
|
|
// ============================================================================
|
|
|
|
checkRole(array('admin'));
|
|
|
|
// ============================================================================
|
|
// Functions
|
|
// ============================================================================
|
|
|
|
// ============================================================================
|
|
// Main before POST
|
|
// ============================================================================
|
|
|
|
// ============================================================================
|
|
// POST Method
|
|
// ============================================================================
|
|
|
|
// ============================================================================
|
|
// Main after POST
|
|
// ============================================================================
|
|
|
|
activatePlugin('pluginAPI');
|
|
$apiURL = DOMAIN_BASE.'api/';
|
|
$pluginAPI = getPlugin('pluginAPI');
|
|
$apiToken = $pluginAPI->getToken();
|
|
$username = $login->username();
|
|
$admin = new User($username);
|
|
$authToken = $admin->tokenAuth();
|
|
$output = array(
|
|
'apiURL'=>$apiURL,
|
|
'username'=>$username,
|
|
'apiToken'=>$apiToken,
|
|
'authToken'=>$authToken
|
|
);
|
|
exit(json_encode($output));
|
|
|
|
?>
|