123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- /**
- * config
- *
- * @method get config.php
- * @method find find the path to the config.php file
- * @method exists determin if the the config.php file exists
- */
- class config {
- /**
- * database variables and config path
- */
- public $db_type;
- public $db_name;
- public $db_username;
- public $db_password;
- public $db_host;
- public $db_path;
- public $db_port;
- public $db_secure;
- public $db_cert_authority;
- public $config_path;
- /**
- * Called when the object is created
- */
- public function __construct() {
- //place holder
- }
- /**
- * Called when there are no references to a particular object
- * unset the variables used in the class
- */
- public function __destruct() {
- foreach ($this as $key => $value) {
- unset($this->$key);
- }
- }
- /**
- * Determine whether the config.php exists
- * @var string $db_type - type of database
- * @var string $db_name - name of the database
- * @var string $db_username - username to access the database
- * @var string $db_password - password to access the database
- * @var string $db_host - hostname of the database server
- * @var string $db_path - path of the database file
- * @var string $db_port - network port to connect to the database
- * @var bool $db_secure - whether or not to connect with SSL
- * @var string $db_cert_authority - location of certificate authority
- */
- public function get() {
- $this->find();
- if ($this->exists()) {
- require $this->config_path;
- $this->db_type = $db_type;
- $this->db_name = $db_name;
- $this->db_username = $db_username;
- $this->db_password = $db_password;
- $this->db_secure = $db_secure;
- $this->db_cert_authority = $db_cert_authority;
- $this->db_host = $db_host;
- $this->db_path = $db_path;
- $this->db_port = $db_port;
- }
- }
- /**
- * Find the path to the config.php
- * @var string $config_path - full path to the config.php file
- */
- public function find() {
- //get the PROJECT PATH
- include "root.php";
- // find the file
- if (file_exists($_SERVER["PROJECT_ROOT"]."/resources/config.php")) {
- $this->config_path = $_SERVER["PROJECT_ROOT"]."/resources/config.php";
- } elseif (file_exists("/etc/fusionpbx/config.php")) {
- $this->config_path = "/etc/fusionpbx/config.php";
- } elseif (file_exists("/usr/local/etc/fusionpbx/config.php")) {
- $this->config_path = "/usr/local/etc/fusionpbx/config.php";
- }
- else {
- $this->config_path = '';
- }
- //return the path
- return $this->config_path;
- }
- /**
- * Determine whether the config.php exists
- */
- public function exists() {
- $this->find();
- if (strlen($this->config_path) > 0) {
- return true;
- }
- else {
- return false;
- }
- }
- }
- /*
- $config = new config;
- $config_exists = $config->exists();
- $config_path = $config->find();
- $config->get();
- $db_type = $config->db_type;
- $db_name = $config->db_name;
- $db_username = $config->db_username;
- $db_password = $config->db_password;
- $db_host = $config->db_host;
- $db_path = $config->db_path;
- $db_port = $config->db_port;
- echo "config_path: ".$config_path."\n";
- if ($config_exists) {
- echo "config_exists: true\n";
- } else {
- echo "config_exists: false\n";
- }
- echo "db_type: ".$db_type."\n";
- echo "db_name: ".$db_name."\n";
- echo "db_username: ".$db_username."\n";
- echo "db_password: ".$db_password."\n";
- echo "db_host: ".$db_host."\n";
- echo "db_path: ".$db_path."\n";
- echo "db_port: ".$db_port."\n";
- */
- ?>
|