-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconfig_function.php
61 lines (54 loc) · 1.45 KB
/
config_function.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* *
* * please don't remove this comment block
* *
* * @author phptricks Team - Mohammad Anzawi
* * @author_uri https://phptricks.org
* * @uri https://github.com/anzawi/php-database-class
* * @version 5.0.0
* * @licence MIT -> https://opensource.org/licenses/MIT
* * @package PHPtricks\Orm
*
*/
/**
* Get Config from database_config file in easy
*/
function config($path = '')
{
$config = include(dirname(__FILE__).'/database_config.php');
if (strpos($path, ".") !== false) {
$path = explode(".", $path);
}
if (is_array($path) && count($path)) {
foreach ($path as $setting) {
if (isset($config[$setting])) {
$config = $config[$setting];
}
}
return $config;
} else {
if (isset($config[$path])) {
return $config[$path];
}
$configValue = isset($config['connections'][$config['default']][$path])
?
$config['connections'][$config['default']][$path] : null;
if ($path) {
if ( ! is_null($configValue)) {
return $configValue;
}
}
}
return $config['default'];
}
/**
* Generate Column Name when use Database::dataView() method
*
* convert column_name and columnName to Column Name
*/
function getColumnName($columnName = '')
{
return ucwords(str_replace("_", "",
implode(" ", preg_split('/(?=[A-Z]|_)/', $columnName))));
}