mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-22 16:38:28 +00:00
64 lines
1.9 KiB
PHP
64 lines
1.9 KiB
PHP
<?php
|
|
|
|
class feature_codes {
|
|
const app_name = 'feature_codes';
|
|
const app_uuid = '7a39c83a-f3f2-4774-8732-8d839758aa47';
|
|
const app_category = 'reports';
|
|
const app_subcategory = '';
|
|
const app_version = '1.0.0';
|
|
const app_description = 'This application provides a report of all features and their status.';
|
|
|
|
/**
|
|
* Set in the constructor. Must be a database object and cannot be null.
|
|
* @var database Database Object
|
|
*/
|
|
private $database;
|
|
|
|
/**
|
|
* Settings object set in the constructor. Must be a settings object and cannot be null.
|
|
* @var settings Settings Object
|
|
*/
|
|
private $settings;
|
|
|
|
/**
|
|
* User UUID set in the constructor. This can be passed in through the $settings_array associative array or set in the session global array
|
|
* @var string
|
|
*/
|
|
private $user_uuid;
|
|
|
|
/**
|
|
* Domain UUID set in the constructor. This can be passed in through the $settings_array associative array or set in the session global array
|
|
* @var string
|
|
*/
|
|
private $domain_uuid;
|
|
|
|
/**
|
|
* Initializes the object with settings and default values.
|
|
*
|
|
* @param array $setting_array Associative array of setting keys to their respective values (optional)
|
|
*/
|
|
public function __construct(array $setting_array = []) {
|
|
//set domain and user UUIDs
|
|
$this->domain_uuid = $setting_array['domain_uuid'] ?? $_SESSION['domain_uuid'] ?? '';
|
|
$this->user_uuid = $setting_array['user_uuid'] ?? $_SESSION['user_uuid'] ?? '';
|
|
|
|
//set objects
|
|
$config = $setting_array['config'] ?? config::load();
|
|
$this->database = $setting_array['database'] ?? database::new(['config' => $config]);
|
|
$this->settings = $setting_array['settings'] ?? new settings(['database' => $this->database, 'domain_uuid' => $this->domain_uuid, 'user_uuid' => $this->user_uuid]);
|
|
}
|
|
|
|
public function get_name() {
|
|
return 'Features Report';
|
|
}
|
|
|
|
public function display(): void {
|
|
echo $this->render();
|
|
return;
|
|
}
|
|
|
|
public function render(): string {
|
|
return "Features Report";
|
|
}
|
|
}
|