article engine for static pages was integrated
[living-lab-site.git] / application / controllers / catalog.php
index 3285c67..23a2f17 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 /**
- * Class Catalog controlls video hierarchy and searching
+ * Class Catalog controls video hierarchy and searching
  *
  * @category   Controller
  * @author             Călin-Andrei Burloiu
@@ -17,6 +17,9 @@ class Catalog extends CI_Controller {
        
        public function index()
        {
+               // **
+               // ** LOADING MODEL
+               // **
                // Retrieve videos summary.
                $this->load->model('videos_model');
                foreach ($this->config->item('categories') as $id => $name)
@@ -39,13 +42,20 @@ class Catalog extends CI_Controller {
                }
                
                $params = array(        'title' => $this->config->item('site_name'),
-                                                       'css' => array('catalog.css'),
+                                                       'css' => array(
+                                                               'catalog.css', 
+                                                               'jquery-ui.css'
+                                                               ),
                                                        //'js' => array(),
                                                        //'metas' => array('description'=>'','keywords'=>'')
                                                        );
                $this->load->library('html_head_params', $params);
+               
+               // **
+               // ** LOADING VIEWS
+               // **
                $this->load->view('html_begin', $this->html_head_params);
-               $this->load->view('header');
+               $this->load->view('header', array('selected_menu' => 'home'));
                
                $this->load->view('catalog/index_view', $data);
                
@@ -55,16 +65,14 @@ class Catalog extends CI_Controller {
        
        public function test($page = 0)
        {
-               $this->load->helper('url');
                
-               $str = '[{"def":"1080p"},{"def":"600p"}]';
-               $a = json_decode($str);
-               
-               echo count($a);
        }
        
        public function category($category_id, $offset = 0)
        {
+               // **
+               // ** LOADING MODEL
+               // **
                // Retrieve videos summary.
                $this->load->model('videos_model');
                $vs_data['videos'] = $this->videos_model->get_videos_summary(
@@ -98,6 +106,10 @@ class Catalog extends CI_Controller {
                                                        //'metas' => array('description'=>'','keywords'=>'')
                                                        );
                $this->load->library('html_head_params', $params);
+               
+               // **
+               // ** LOADING VIEWS
+               // **
                $this->load->view('html_begin', $this->html_head_params);
                $this->load->view('header');