|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Copyright © 2021 ExacTI Technology Solutions. All rights reserved.
|
|
|
|
* GPLv3 General License.
|
|
|
|
* https://exacti.com.br
|
|
|
|
* Phacil PHP Framework - https://github.com/exacti/phacil-framework
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Phacil\Framework;
|
|
|
|
|
|
|
|
/** @package Phacil\Framework */
|
|
|
|
final class Loader implements \Phacil\Framework\Interfaces\Loader {
|
|
|
|
protected $registry;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Registry $registry
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(\Phacil\Framework\Registry $registry) {
|
|
|
|
$this->registry = $registry;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __get($key) {
|
|
|
|
return $this->registry->get($key);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __set($key, $value) {
|
|
|
|
$this->registry->set($key, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $library
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function library($library) {
|
|
|
|
$file = DIR_SYSTEM . 'library/' . $library . '.php';
|
|
|
|
|
|
|
|
if (file_exists($file)) {
|
|
|
|
return include_once($file);
|
|
|
|
} else {
|
|
|
|
return trigger_error('Error: Could not load library ' . $library . '!');
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $model
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function model($model) {
|
|
|
|
|
|
|
|
$parts = explode('/', str_replace('../', '', (string)$model));
|
|
|
|
|
|
|
|
$lastPart = array_pop($parts);
|
|
|
|
|
|
|
|
$path = str_replace('../', '', implode("/", $parts) );
|
|
|
|
|
|
|
|
$file = DIR_APP_MODULAR.$path."/model/". $lastPart.".php";
|
|
|
|
|
|
|
|
if(file_exists($file)){
|
|
|
|
include_once($file);
|
|
|
|
$class = 'Model' . preg_replace('/[^a-zA-Z0-9]/', '', $model);
|
|
|
|
|
|
|
|
$this->registry->set('model_' . str_replace('/', '_', $model), new $class($this->registry));
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$file = DIR_APPLICATION . 'model/' . $model . '.php';
|
|
|
|
$class = 'Model' . preg_replace('/[^a-zA-Z0-9]/', '', $model);
|
|
|
|
|
|
|
|
if (file_exists($file)) {
|
|
|
|
include_once($file);
|
|
|
|
|
|
|
|
$this->registry->set('model_' . str_replace('/', '_', $model), new $class($this->registry));
|
|
|
|
} else {
|
|
|
|
trigger_error('Error: Could not load model ' . $model . '!');
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $helper
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function helper($helper) {
|
|
|
|
|
|
|
|
$parts = explode('/', str_replace('../', '', (string)$helper));
|
|
|
|
|
|
|
|
$lastPart = array_pop($parts);
|
|
|
|
|
|
|
|
$path = str_replace('../', '', implode("/", $parts) );
|
|
|
|
|
|
|
|
$file = DIR_APP_MODULAR.$path."/helper/". $lastPart.".php";
|
|
|
|
|
|
|
|
if(file_exists($file)){
|
|
|
|
include_once($file);
|
|
|
|
/* $class = 'Helper' . preg_replace('/[^a-zA-Z0-9]/', '', $model);
|
|
|
|
|
|
|
|
$this->registry->set('model_' . str_replace('/', '_', $model), new $class($this->registry)); */
|
|
|
|
} else {
|
|
|
|
trigger_error('Error: Could not load Helper ' . $helper . '!');
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* temp alias, consider change to loader controller function
|
|
|
|
* @param string $control Name of controller
|
|
|
|
* @deprecated 2.0.0 instead, use controller
|
|
|
|
* @see \Phacil\Framework\Loader::controller()
|
|
|
|
* @since 1.1.0
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function control($control) {
|
|
|
|
$this->controller($control);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $control
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function controller($control) {
|
|
|
|
$file = DIR_APPLICATION . 'controller/' . $control . '.php';
|
|
|
|
$class = 'Controller' . preg_replace('/[^a-zA-Z0-9]/', '', $control);
|
|
|
|
|
|
|
|
if (file_exists($file)) {
|
|
|
|
include_once($file);
|
|
|
|
|
|
|
|
$this->registry->set('controller_' . str_replace('/', '_', $control), new $class($this->registry));
|
|
|
|
} else {
|
|
|
|
trigger_error('Error: Could not load model ' . $control . '!');
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $driver
|
|
|
|
* @param string $hostname
|
|
|
|
* @param string $username
|
|
|
|
* @param string $password
|
|
|
|
* @param string $database
|
|
|
|
* @param int|null $port
|
|
|
|
* @param string|null $charset
|
|
|
|
* @return string[]|string|null
|
|
|
|
*/
|
|
|
|
public function database($driver, $hostname, $username, $password, $database, $port = NULL, $charset = NULL) {
|
|
|
|
$file = DIR_SYSTEM . 'database/database/' . $driver . '.php';
|
|
|
|
$class = ($driver);
|
PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
5 years ago
|
|
|
|
|
|
|
$replace = [
|
|
|
|
'/' => '_',
|
|
|
|
'.' => '_'
|
|
|
|
];
|
|
|
|
|
|
|
|
$database_name = str_replace(array_keys($replace), array_values($replace), preg_replace('/[^a-zA-Z0-9]/', '', $database));
|
|
|
|
|
|
|
|
|
|
|
|
if (file_exists($file)) {
|
PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
5 years ago
|
|
|
//include_once($file);
|
|
|
|
|
|
|
|
$this->db->createSubBase($database_name, new Database($driver, $hostname, $username, $password, $database));
|
PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
5 years ago
|
|
|
|
|
|
|
return $database_name;
|
|
|
|
} else {
|
|
|
|
trigger_error('Error: Could not load database ' . $driver . '!');
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $config
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function config($config) {
|
|
|
|
$this->config->load($config);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $language
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function language($language = null) {
|
|
|
|
|
|
|
|
$language = ($language) ?: $this->registry->route;
|
|
|
|
|
|
|
|
return $this->language->load($language);
|
|
|
|
}
|
|
|
|
}
|