/models/engine/Table.php

https://bitbucket.org/taras_bodnar/hw · PHP · 134 lines · 71 code · 13 blank · 50 comment · 6 complexity · 442d405066b2b327f6da5a62e12af104 MD5 · raw file

  1. <?php
  2. /**
  3. * OYiEngine 6.x
  4. * Company Otakoyi.com
  5. * Author wmgodyak mailto:wmgodyak@gmail.com
  6. * Date: 11.05.14 10:53
  7. */
  8. namespace models\engine;
  9. use models\Engine;
  10. use controllers\core\DB;
  11. if ( !defined('SYSPATH') ) die();
  12. /**
  13. * Class Table working vs datatables
  14. * @package models\engine
  15. */
  16. class Table extends Engine {
  17. private $debug = false;
  18. public function __construct()
  19. {
  20. parent::__construct();
  21. }
  22. public function debug($status)
  23. {
  24. $this->debug = $status;
  25. return $this;
  26. }
  27. /**
  28. * insert data to table structure
  29. * @param $data
  30. * @param $info
  31. * @return int insert ID
  32. */
  33. public function create($data, $info)
  34. {
  35. }
  36. /**
  37. * @param $id
  38. * @param $data
  39. * @param $info
  40. * @return bool|string
  41. */
  42. public function update($id, $data, $info)
  43. {
  44. }
  45. /**
  46. * @param $id
  47. * @return int
  48. */
  49. public function delete($id)
  50. {
  51. }
  52. /**
  53. * sortable function
  54. * @param $table table name
  55. * @param $pk string primary key
  56. * @param $col string sorting column
  57. * @param $i int sorting index
  58. * @param $id int column index
  59. * @return bool
  60. */
  61. public function sort($table, $pk, $col, $i, $id)
  62. {
  63. return $this->db->update($table, array($col=>$i), " $pk =$id limit 1", $this->debug);
  64. }
  65. /**
  66. * @param array $columns list of columns : array('col1','col2')
  67. * @param string $table
  68. * @param array $join list of joins
  69. * @param string $where
  70. * @param $order
  71. * @param $limit
  72. * @return array|mixed
  73. */
  74. public function rows(array $columns, $table, array $join, $where ='', $order, $limit)
  75. {
  76. $columns = implode(', ', $columns);
  77. if(empty($join)) {
  78. $join='';
  79. } else {
  80. $join = implode('
  81. ', $join );
  82. }
  83. $r = $this->db->select(" SELECT SQL_CALC_FOUND_ROWS
  84. {$columns}
  85. FROM {$table}
  86. {$join}
  87. {$where}
  88. {$order}
  89. {$limit}
  90. ", $this->debug)->all();
  91. if(!$r){
  92. echo DB::getErrorMessage();
  93. }
  94. return $r;
  95. }
  96. public function foundRows()
  97. {
  98. return $this->db->select("SELECT FOUND_ROWS() as total", $this->debug)->row('total');
  99. }
  100. /**
  101. * @param $table
  102. * @param array $join
  103. * @param string $where
  104. * @return array|mixed
  105. */
  106. public function total($table, array $join, $where ='')
  107. {
  108. if(empty($join)) {
  109. $join='';
  110. } else {
  111. $join = implode('
  112. ', $join );
  113. }
  114. return $this->db->select("
  115. SELECT COUNT(*) as total
  116. from {$table}
  117. {$join}
  118. {$where}
  119. ", $this->debug)->row('total');
  120. }
  121. }