Просмотр файла mc-2.7.0/modules/index_page/models/index_page.php

Размер файла: 658B
  1. <?php
  2.  
  3. /*
  4. * To change this license header, choose License Headers in Project Properties.
  5. * To change this template file, choose Tools | Templates
  6. * and open the template in the editor.
  7. */
  8.  
  9. /**
  10. * Description of Index_Page_Model
  11. *
  12. * @author Олег
  13. */
  14. class Index_Page_Model extends model {
  15.  
  16. public function getPageBlocks() {
  17. return $this->db->query("SELECT * FROM #__index_page_blocks ORDER BY position ASC");
  18. }
  19.  
  20. public function getPageWidgets($blockId) {
  21. return $this->db->query("SELECT * FROM #__index_page_widgets WHERE block_id = '" . $blockId . "' ORDER BY position ASC");
  22. ;
  23. }
  24.  
  25. }