Skip to content

Commit 2ad487e

Browse files
committed
Initial commit
0 parents  commit 2ad487e

File tree

521 files changed

+395630
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

521 files changed

+395630
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
composer.phar
2+
/vendor/
3+
4+
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
5+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
6+
# composer.lock

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Sk Niyaj Ali
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# em
2+

classes/Config.php

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
class Config
4+
{
5+
public static function get($path = null)
6+
{
7+
if ($path) {
8+
$config = $GLOBALS['config'];
9+
$path = explode('/', $path);
10+
11+
foreach ($path as $bit) {
12+
if (isset($config[$bit])) {
13+
$config = $config[$bit];
14+
}
15+
}
16+
17+
return $config;
18+
}
19+
20+
return false;
21+
}
22+
}

classes/Cookie.php

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
4+
class Cookie
5+
{
6+
public static function exists($name)
7+
{
8+
return (isset($_COOKIE[$name])) ? true : false;
9+
}
10+
11+
public static function get($name)
12+
{
13+
return $_COOKIE[$name];
14+
}
15+
16+
public static function put($name, $value, $expiry)
17+
{
18+
if (setcookie($name, $value, time() + $expiry, '/')) {
19+
return true;
20+
}
21+
return false;
22+
}
23+
24+
public static function delete($name)
25+
{
26+
self::put($name, '', time() - 1);
27+
}
28+
}

classes/DB.php

+190
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
<?php
2+
3+
4+
class DB
5+
{
6+
private static $_instance = null;
7+
private $_pdo,
8+
$_query,
9+
$_error = false,
10+
$_results,
11+
$_count = 0;
12+
13+
private function __construct()
14+
{
15+
try {
16+
$this->_pdo = new PDO('mysql:host=' . Config::get('mysql/host') . ';dbname=' . Config::get('mysql/db'), Config::get('mysql/username'), Config::get('mysql/password'));
17+
} catch (PDOException $e) {
18+
die($e->getMessage());
19+
}
20+
}
21+
22+
public static function getInstance()
23+
{
24+
if (!isset(self::$_instance)) {
25+
self::$_instance = new DB();
26+
}
27+
return self::$_instance;
28+
}
29+
30+
public function query($sql, $params = array())
31+
{
32+
$this->_error = false;
33+
34+
if ($this->_query = $this->_pdo->prepare($sql)) {
35+
$x = 1;
36+
if (count($params)) {
37+
foreach ($params as $param) {
38+
$this->_query->bindValue($x, $param);
39+
$x++;
40+
}
41+
}
42+
43+
if ($this->_query->execute()) {
44+
$this->_results = $this->_query->fetchAll(PDO::FETCH_OBJ);
45+
$this->_count = $this->_query->rowCount();
46+
} else {
47+
$this->_error = true;
48+
}
49+
}
50+
51+
return $this;
52+
}
53+
54+
public function action($action, $table, $where = array())
55+
{
56+
if (count($where) === 3) {
57+
$operators = array('=', '>', '<', '>=', '<=');
58+
59+
$field = $where[0];
60+
$operator = $where[1];
61+
$value = $where[2];
62+
63+
if (in_array($operator, $operators)) {
64+
$sql = "{$action} FROM {$table} WHERE {$field} {$operator} ?";
65+
66+
if (!$this->query($sql, array($value))->error()) {
67+
return $this;
68+
}
69+
}
70+
} elseif (count($where) === 6) {
71+
$operators = array('=', '>', '<', '>=', '<=', '!=');
72+
73+
$field = $where[0];
74+
$operator = $where[1];
75+
$value = $where[2];
76+
77+
$field1 = $where[3];
78+
$operator1 = $where[4];
79+
$value1 = $where[5];
80+
81+
if (in_array($operator, $operators)) {
82+
$sql = "{$action} FROM {$table} WHERE {$field} {$operator} ? AND {$field1} {$operator1} ?";
83+
84+
if (!$this->query($sql, array($value, $value1))->error()) {
85+
return $this;
86+
}
87+
}
88+
} else {
89+
$operators = array('=', '>', '<', '>=', '<=', '!=');
90+
91+
$field = $where[0];
92+
$operator = $where[1];
93+
$value = $where[2];
94+
95+
$field1 = $where[3];
96+
$operator1 = $where[4];
97+
$value1 = $where[5];
98+
99+
$clouse = $where[6];
100+
$field2 = $where[7];
101+
$operator2 = $where[8];
102+
$value2 = $where[9];
103+
104+
if (in_array($operator, $operators)) {
105+
$sql = "{$action} FROM {$table} WHERE {$field} {$operator} ? AND {$field1} {$operator1} ? {$clouse} {$field2} {$operator2} ?";
106+
if (!$this->query($sql, array($value, $value1, $value2))->error()) {
107+
return $this;
108+
}
109+
}
110+
}
111+
112+
return false;
113+
}
114+
115+
public function insert($table, $fields = array())
116+
{
117+
$keys = array_keys($fields);
118+
$values = null;
119+
$x = 1;
120+
121+
foreach ($fields as $field) {
122+
$values .= '?';
123+
if ($x < count($fields)) {
124+
$values .= ', ';
125+
}
126+
$x++;
127+
}
128+
129+
$sql = "INSERT INTO {$table} (`" . implode('`, `', $keys) . "`) VALUES ({$values})";
130+
131+
if (!$this->query($sql, $fields)->error()) {
132+
return true;
133+
}
134+
135+
return false;
136+
}
137+
138+
public function update($table, $id, $fields)
139+
{
140+
$set = '';
141+
$x = 1;
142+
143+
foreach ($fields as $name => $value) {
144+
$set .= "{$name} = ?";
145+
if ($x < count($fields)) {
146+
$set .= ', ';
147+
}
148+
$x++;
149+
}
150+
151+
$sql = "UPDATE {$table} SET {$set} WHERE id = {$id}";
152+
153+
if (!$this->query($sql, $fields)->error()) {
154+
return true;
155+
}
156+
157+
return false;
158+
}
159+
160+
public function delete($table, $where)
161+
{
162+
return $this->action('DELETE ', $table, $where);
163+
}
164+
165+
public function get($table, $where)
166+
{
167+
return $this->action('SELECT *', $table, $where);
168+
}
169+
170+
public function results()
171+
{
172+
return $this->_results;
173+
}
174+
175+
public function first()
176+
{
177+
$data = $this->results();
178+
return $data[0];
179+
}
180+
181+
public function count()
182+
{
183+
return $this->_count;
184+
}
185+
186+
public function error()
187+
{
188+
return $this->_error;
189+
}
190+
}

0 commit comments

Comments
 (0)