/** * Show files (table view) * * @param integer $id_area Area ID * @param string $category category * @param string $subcategory subcategory * @param integer $type type index * @param integer $pp pagination index * @return void */ public function index($id_area = 2, $category = '-', $subcategory = '-', $xtype = -1, $pp = 0, $str = '') { // load dictionary $this->dict->get_wordarray(array('files')); $amod = new Area_model(); list($id_area, $areas) = $amod->get_my_areas($id_area); // get page $page = $this->get_page('files'); $navbar = array($this->site->get_bredcrumb($page)); $category = urldecode($category); $subcategory = urldecode($subcategory); // content $view = new X4View_core('container'); $view->content = new X4View_core('files/file_list'); $view->content->page = $page; $view->content->navbar = $navbar; $view->content->id_area = $id_area; $view->content->xtype = $xtype; $view->content->category = $category; $view->content->subcategory = $subcategory; $view->content->str = $str; $mod = new File_model(); $view->content->items = X4Pagination_helper::paginate($mod->get_files($id_area, $category, $subcategory, $xtype, $str), $pp); $view->content->file_path = $mod->file_path; // area switcher $view->content->areas = $areas; // type switcher $view->content->types = $mod->get_types(); // files category switcher $view->content->categories = $mod->get_cat($id_area); // files subcategory switcher $view->content->subcategories = $mod->get_subcat($id_area, $category); $view->render(TRUE); }
/** * Default method * Display paginated articles with specified key * * @param object $page object * @param array $args array of args * @param string $param parameter (the key) * @return string */ public function get_module($page, $args, $param = '') { $out = ''; // pagination index $pp = isset($args[0]) ? intval($args[0]) : 0; // tag index $tag = isset($args[1]) && $args[1] == 'tag' ? urldecode($args[2]) : false; if (!empty($param)) { if ($tag) { $mod = new X3get_by_key_model(); $items = X4Pagination_helper::paginate($mod->get_articles_by_key_and_tag($page->id_area, $page->lang, $param, $tag), $pp); $out .= '<div class="block"><h3>' . _TAG . ': ' . htmlentities($tag) . '</h3></div>'; } else { $items = X4Pagination_helper::paginate($this->site->get_articles_by_key($page->id_area, $page->lang, $param), $pp); } // use pagination if ($items[0]) { foreach ($items[0] as $i) { if (!empty($i->content)) { $out .= '<div class="block">' . X4Utils_helper::online_edit($i, 0); // options $out .= X4Utils_helper::get_block_options($i); // check excerpt if ($i->excerpt) { $text = X4Utils_helper::excerpt($i->content); $out .= X4Utils_helper::reset_url(stripslashes($text[0])); } else { $out .= X4Utils_helper::reset_url(stripslashes($i->content)); } $out .= '<div class="clear"></div>'; // display tags if ($i->show_tags && !empty($i->tags)) { $out .= '<p class="tags"><span>' . _TAGS . '</span>: '; $tt = explode(',', $i->tags); foreach ($tt as $t) { $t = trim($t); $out .= '<a href="' . BASE_URL . $page->url . '/0/tag/' . urlencode($t) . '" title="' . _TAG . '">' . $t . '</a> '; } $out .= '</p>'; } $out .= '</div>'; } // module if (!empty($i->module)) { $out .= X4Utils_helper::module($this->site, $page, $args, $i->module, $i->param); } } // pager $out .= '<div id="pager">' . X4Pagination_helper::pager(BASE_URL . $page->url . '/', $items[1]) . '</div>'; } else { $out .= '<div class="block"><p>' . _NO_ITEMS . '</p></div>'; } } return $out; }
/** * Show articles (table view) * Can show articles by context, by category, by author, by key, by page * Default view is reverse chronological order * * @param integer $id_area Area ID * @param string $lang Language code * @param string $case view switcher * @param mixed $id_what view parameter * @param integer $pp index for pagination * @param string $str Search string * @return void */ public function index($id_area = 2, $lang = '', $case = 'latest_articles', $id_what = 0, $pp = 0, $str = '') { // load dictionary $this->dict->get_wordarray(array('articles')); $area = new Area_model(); list($id_area, $areas) = $area->get_my_areas($id_area); $_SESSION['referer'] = 'index/' . $id_area . '/' . $lang . '/' . $case . '/' . $id_what . '/' . $pp . '/' . $str; // get page $page = $this->get_page('articles'); $navbar = array($this->site->get_bredcrumb($page)); // content $mod = new Article_model(); $view = new X4View_core('container'); $view->content = new X4View_core('articles/article_list'); $view->content->navbar = $navbar; switch ($case) { case 'context_order': $cmod = new Context_model(); $con = $cmod->get_contexts($id_area, $lang); if ($id_what == 0 && $con) { $id_what = $con[0]->code; } $view->content->items = X4Pagination_helper::paginate($mod->get_by_context($id_area, $lang, $id_what, $str), $pp); $view->content->contexts = $con; break; case 'category_order': $cmod = new Category_model(); $ctg = $cmod->get_categories($id_area, $lang); if ($id_what === 0 && $ctg) { $id_what = $ctg[0]->name; } $view->content->items = X4Pagination_helper::paginate($mod->get_by_category($id_area, $lang, $id_what, $str), $pp); $view->content->categories = $ctg; break; case 'author_order': $aut = $mod->get_authors($id_area, $lang); if ($id_what == 0 && $aut) { $id_what = $aut[0]->id_editor; } $view->content->items = X4Pagination_helper::paginate($mod->get_by_author($id_area, $lang, $id_what, $str), $pp); $view->content->authors = $aut; break; case 'key_order': $keys = $mod->get_keys($id_area, $lang); if ($id_what == 0 && $keys) { $id_what = $keys[0]->xkeys; } $view->content->items = X4Pagination_helper::paginate($mod->get_by_key($id_area, $lang, $id_what, $str), $pp); $view->content->keys = $keys; break; case 'by_page': $pmod = new Page_model(); $spage = $pmod->get_by_id($id_what); $view->content->items = X4Pagination_helper::paginate($mod->get_by_page($id_area, $lang, $id_what, $str), $pp); $view->content->page = $spage; break; default: $view->content->items = X4Pagination_helper::paginate($mod->get_articles($id_area, $lang, 'id', $str), $pp); break; } // for the construction of the tabs $view->content->xcase = $case; $view->content->cases = $this->cases; $view->content->id_what = $id_what; $view->content->pp = $pp; $view->content->str = $str; // area switcher $view->content->id_area = $id_area; $view->content->areas = $areas; // language switcher $view->content->lang = $lang; $lang = new Language_model(); $view->content->langs = $lang->get_languages(); $view->render(TRUE); }