155. public function __construct(array $config = [])
156. {
157. $this->defaultConfig = Config::default('ZN\Database\DatabaseDefaultConfiguration')
158. ::get('Database', 'database');
159. $this->config = array_merge($this->defaultConfig, $config);
160. $this->db = $this->runDriver();
161. $this->prefix = $this->config['prefix'];
162. Properties::$prefix = $this->prefix;
163.
164. $this->db->connect($this->config);
165. }
166.
167. /**
168. * Magic Debug Info
169. */
170. public function __debugInfo()
171. {
172. return ['return' => $this->stringQuery ?: 'This is a general object, please call the sub method!'];
173. }
174.
29.
30.
31. public function getBySlug($slug){
32. return DB::where([
33. ["status", 1, "and"],
34. ['slug_en', $slug, "or"],
35. ['slug_ar', $slug, "or"],
36. ['slug_ru', $slug, "or"],
37. ['slug_es', $slug, "or"],
38. ['slug_tr', $slug],
39. ])->blog()->row();
40. }
41.
42. // Blog İçerik Çekme
43. public function getByID($id = 0)
44. {
45. return DB::where('id', $id)->blog()->row();
46. }
47.
48.
41. * protected use class name
42. *
43. * @param string $method
44. * @param array $parameters
45. *
46. * @return mixed
47. */
48. protected static function useClassName($method, $parameters)
49. {
50. return Singleton::class(INTERNAL_ACCESS . static::getClassName())->$method(...$parameters);
51. }
52. }
15. * Magic call static
16. *
17. * @param string $method
18. * @param array $parameters
19. *
20. * @return mixed
21. */
22. public static function __callStatic($method, $parameters)
23. {
24. return self::useClassName($method, $parameters);
25. }
26.
27. /**
28. * Magic call
29. *
30. * @param string $method
31. * @param array $parameters
32. *
33. * @return mixed
34. */
50. if(Lang::get() == "tr"){
51. $slug = URI::get('detay');
52. }else{
53.
54. $slug = URI::get('detail');
55. }
56. */
57.
58. $slug = URI::segment(-1);
59. $sor = BlogModel::getBySlug($slug);
60.
61.
62.
63.
64.
65. if(!$sor) {
66. redirect(URL::site('404'));
67. }
68.
69. $baslik = "baslik_".Lang::get();
145. // @codeCoverageIgnoreEnd
146. else
147. {
148. $this->connect = new MySQLi($host, $user, $pass, $db, $port);
149. }
150. restore_error_handler();
151.
152. if( $this->connect->connect_errno )
153. {
154. throw new ConnectionErrorException(NULL, $this->connect->connect_error); // @codeCoverageIgnore
155. }
156.
157. mysqli_report(MYSQLI_REPORT_OFF);
158.
159. if( ! empty($this->config['charset'] ) ) $this->query("SET NAMES '".$this->config['charset']."'");
160. if( ! empty($this->config['charset'] ) ) $this->query('SET CHARACTER SET '.$this->config['charset']);
161. if( ! empty($this->config['collation']) ) $this->query('SET COLLATION_CONNECTION = "'.$this->config['collation'].'"');
162. }
163.
164. /**