10 lines
244 B
PHP
10 lines
244 B
PHP
<?php
|
|
class Catalog_model extends CI_Model {
|
|
public function __construct() {
|
|
}
|
|
public function get_paintings_all() {
|
|
$query = $this->db->query('CALL paintings_get_all_active');
|
|
return $query->result_array();
|
|
}
|
|
}
|