@@ -91,7 +91,7 @@ |
||
91 | 91 | * return the entire session superglobal. mainly for debugging purposes |
92 | 92 | * @return mixed |
93 | 93 | */ |
94 | - public function getAllSessionVars(){ |
|
94 | + public function getAllSessionVars() { |
|
95 | 95 | return $_SESSION; |
96 | 96 | } |
97 | 97 |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * fetches the result from an executed query |
102 | 102 | * @return array |
103 | 103 | */ |
104 | - protected function fetchAll(){ |
|
104 | + protected function fetchAll() { |
|
105 | 105 | return $this->stmt->fetchAll(); |
106 | 106 | } |
107 | 107 | |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | * returns a single line from the executed query |
110 | 110 | * @return mixed |
111 | 111 | */ |
112 | - protected function fetch(){ |
|
112 | + protected function fetch() { |
|
113 | 113 | return $this->stmt->fetch(); |
114 | 114 | } |
115 | 115 | |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | $table = $reflect->getShortName(); //this is to only get the model name, otherwise we get the full namespace |
137 | 137 | //since our models all end with Model, we should remove it. |
138 | 138 | $table = $this->removeFromEnd($table, 'Model'); |
139 | - $table = $table . 's'; //adding the s since the table should be plural. Might be some special case where the plural isn't just with an s |
|
139 | + $table = $table.'s'; //adding the s since the table should be plural. Might be some special case where the plural isn't just with an s |
|
140 | 140 | $table = strtolower($table); //the database names are in lowercase |
141 | 141 | } |
142 | 142 | |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | } |
156 | 156 | |
157 | 157 | //if we are here, then table doesn't exist, check for view |
158 | - $view = 'v_' . $table; |
|
158 | + $view = 'v_'.$table; |
|
159 | 159 | $stmt->bindValue(':table', $view, PDO::PARAM_STR); |
160 | 160 | $stmt->execute(); |
161 | 161 | $exists = $stmt->rowCount() > 0; //will return 1 if table exists or 0 if non existant |
@@ -176,8 +176,8 @@ discard block |
||
176 | 176 | * @param $table string the table name |
177 | 177 | * @return string |
178 | 178 | */ |
179 | - protected function getTablePrefix($table){ |
|
180 | - if(Config::TABLE_PREFIX != '') |
|
179 | + protected function getTablePrefix($table) { |
|
180 | + if (Config::TABLE_PREFIX != '') |
|
181 | 181 | { |
182 | 182 | $table = Config::TABLE_PREFIX.'_'.$table; |
183 | 183 | } |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | protected function getRowById($rowId, $table = null): array |
249 | 249 | { |
250 | 250 | $tableName = $this->getTable($table); |
251 | - $idName = 'id' . $tableName; |
|
251 | + $idName = 'id'.$tableName; |
|
252 | 252 | $sql = "SELECT * FROM $tableName WHERE $idName = :rowId"; |
253 | 253 | $this->query($sql); |
254 | 254 | $this->bind(':rowId', $rowId); |
@@ -22,5 +22,5 @@ |
||
22 | 22 | const FRONT_PAGE_POSTS = 3; |
23 | 23 | const POSTS_PER_PAGE = 10; |
24 | 24 | |
25 | - const EXCERPT_WORD_COUNT =20; |
|
25 | + const EXCERPT_WORD_COUNT = 20; |
|
26 | 26 | } |
27 | 27 | \ No newline at end of file |
@@ -8,7 +8,7 @@ |
||
8 | 8 | { |
9 | 9 | public function index() |
10 | 10 | { |
11 | - if(!$this->auth->isUser()){ |
|
11 | + if (!$this->auth->isUser()) { |
|
12 | 12 | $this->alertBox->setAlert("You must be connected to acces the admin interface", 'warning'); |
13 | 13 | $this->container->getResponse()->redirect(); |
14 | 14 | } |
@@ -3,14 +3,14 @@ discard block |
||
3 | 3 | |
4 | 4 | use Core\Model; |
5 | 5 | |
6 | -class CategoryModel extends Model{ |
|
6 | +class CategoryModel extends Model { |
|
7 | 7 | |
8 | 8 | /** |
9 | 9 | * get the list of categories and return all the data |
10 | 10 | * @return array the categories |
11 | 11 | * @throws \ReflectionException |
12 | 12 | */ |
13 | - public function getCategories(){ |
|
13 | + public function getCategories() { |
|
14 | 14 | return $this->getResultSet('categories'); |
15 | 15 | } |
16 | 16 | |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | $categories = $this->getCategories(); |
27 | 27 | foreach ($categories as $category) { |
28 | 28 | $data += [ |
29 | - $category->category_name => '/category/' . $category->categories_slug |
|
29 | + $category->category_name => '/category/'.$category->categories_slug |
|
30 | 30 | ]; |
31 | 31 | } |
32 | 32 | return $data; |
@@ -3,7 +3,7 @@ |
||
3 | 3 | |
4 | 4 | use Core\Model; |
5 | 5 | |
6 | -class TagsModel extends Model{ |
|
6 | +class TagsModel extends Model { |
|
7 | 7 | public function getTags(): array |
8 | 8 | { |
9 | 9 | return $this->getResultSet('tags'); |
@@ -36,7 +36,7 @@ |
||
36 | 36 | } |
37 | 37 | if ($success) { |
38 | 38 | $this->alertBox->setAlert('Configuration updates successfully'); |
39 | - } else { |
|
39 | + }else { |
|
40 | 40 | $this->alertBox->setAlert('error in configuration update', 'error'); |
41 | 41 | } |
42 | 42 | $this->container->getResponse()->redirect('admin/config'); |
@@ -38,7 +38,7 @@ |
||
38 | 38 | if (!$configModel->updateConfig($update->name, $update->value)) { |
39 | 39 | $result['success'] = false; |
40 | 40 | $result['errorId'][] = $update->name; |
41 | - } else { |
|
41 | + }else { |
|
42 | 42 | $result['successId'][] = $update->name; |
43 | 43 | } |
44 | 44 | } |
@@ -24,7 +24,7 @@ |
||
24 | 24 | { |
25 | 25 | $this->session->set('user_role_name', 'Admin'); |
26 | 26 | $this->session->set('user_role_level', 2); |
27 | - $this->session->set('user_id',1); |
|
27 | + $this->session->set('user_id', 1); |
|
28 | 28 | $this->alertBox->setAlert('Connected as admin'); |
29 | 29 | $this->container->getResponse()->redirect('/admin/'); |
30 | 30 | } |