X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=blobdiff_plain;f=application%2Fcontrollers%2Fcatalog.php;h=43183253bd72daaf7acf8234c6c73359ae8489b0;hb=b4c30b5348cc06058bb39784db7a0afd786cfbcd;hp=8dacaae608d2a4041064c2a90d8b49cb429774aa;hpb=0b134deb6f1108155973436e3de7296a76a2d660;p=living-lab-site.git diff --git a/application/controllers/catalog.php b/application/controllers/catalog.php index 8dacaae..4318325 100644 --- a/application/controllers/catalog.php +++ b/application/controllers/catalog.php @@ -1,26 +1,162 @@ lang->load('catalog'); + } + public function index() { - $this->load->view('html_begin'); - $this->load->view('header'); + // ** + // ** LOADING MODEL + // ** + // Retrieve videos summary. + $this->load->model('videos_model'); + foreach ($this->config->item('categories') as $id => $name) + { + // Videos + $vs_data['videos'] = $this->videos_model->get_videos_summary( + $id, 0, $this->config->item('videos_per_row')); + + // Category + $vs_data['category_title'] = $name ? + $this->lang->line("ui_categ_$name") : $name; + $vs_data['category_id'] = $id; + + // Pagination (not required) + $vs_data['pagination'] = ''; + + $data['videos_summaries'][] = + $this->load->view('catalog/videos_summary_view', + $vs_data, TRUE); + } + + $params = array( 'title' => $this->config->item('site_name'), + 'css' => array( + 'catalog.css', + 'jquery-ui.css' + ), + 'js' => array( + 'jquery.js', + 'jquery-ui.js' + ), + //'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', array('selected_menu' => 'home')); + + $main_params['content'] = $this->load->view('catalog/index_view', $data, TRUE); + $main_params['side'] = $this->load->view('side_default.php', NULL, TRUE); + $this->load->view('main', $main_params); + + $this->load->view('footer'); + $this->load->view('html_end'); + } + + public function test($page = 0) + { + $params = array( 'title' => 'Test - '. $this->config->item('site_name'), + 'css' => array( + 'jquery-ui.css' + ), + 'js' => array( + 'jquery.js', + 'jquery-ui.js' + ), + //'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', array('selected_menu' => 'home')); + $this->load->view('echo', array('output'=>'Test Page', 'clear'=>TRUE)); + + $this->load->view('footer'); + $this->load->view('html_end'); + } + + public function category($category_id, $offset = 0) + { + // ** + // ** LOADING MODEL + // ** + // Retrieve videos summary. $this->load->model('videos_model'); - $data['query'] = $this->videos_model->getVideosSummary(); - $this->load->view('catalog/index_view', $data); + $vs_data['videos'] = $this->videos_model->get_videos_summary( + $category_id, intval($offset), + $this->config->item('videos_per_page')); + + // Video Category + $categories = $this->config->item('categories'); + $category_name = $categories[$category_id]; + $vs_data['category_title'] = $category_name ? + $this->lang->line("ui_categ_$category_name") : $category_name; + $vs_data['category_id'] = $category_id; + + // Pagination + $this->load->library('pagination'); + $pg_config['base_url'] = site_url("catalog/category/$category_id/"); + $pg_config['uri_segment'] = 4; + $pg_config['total_rows'] = $this->videos_model->get_videos_count( + $category_id); + $pg_config['per_page'] = $this->config->item('videos_per_page'); + $this->pagination->initialize($pg_config); + $vs_data['pagination'] = $this->pagination->create_links(); + // Video Summary + $data['video_summary'] = $this->load->view('catalog/videos_summary_view', + $vs_data, TRUE); + + $params = array( 'title' => $this->config->item('site_name'), + 'css' => array( + 'catalog.css', + 'jquery-ui.css' + ), + 'js' => array( + 'jquery.js', + 'jquery-ui.js' + ), + //'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'); + + $main_params['content'] = $this->load->view('catalog/category_view', $data, TRUE); + $main_params['side'] = $this->load->view('side_default.php', NULL, TRUE); + $this->load->view('main', $main_params); $this->load->view('footer'); $this->load->view('html_end'); } + + public function search($query_str) + { + echo $query_str; + } } /* End of file catalog.php */