assign("MOD", $mod_strings); $search_form->assign("APP", $app_strings); if ($order_by !='') $search_form->assign("ORDER_BY", $order_by); if ($sorder !='') $search_form->assign("SORDER", $sorder); $search_form->assign("JAVASCRIPT", get_clear_form_js()); echo get_form_header($current_module_strings['LBL_SEARCH_FORM_TITLE'], "", false); } if(isset($_REQUEST['query']) && $_REQUEST['query'] == 'true') { $where_clauses = Array(); $url_string .="&query=true"; // we have a query if (isset($_REQUEST['question'])) $question = $_REQUEST['question']; if (isset($_REQUEST['faqcategories'])) $faqcategories = $_REQUEST['faqcategories']; if(isset($question) && $question != "") { array_push($where_clauses, "faq.question like '%".$question."%'"); $url_string .= "&question=".$question; $search_form->assign("QUESTION", $question); } if(isset($faqcategories) && $faqcategories != "") { array_push($where_clauses, "faq.category like '%".$faqcategories."%'"); $url_string .= "&faqcategories=".$faqcategories; $search_form->assign("FAQCATEGORIES", $faqcategories); } $where = ""; foreach($where_clauses as $clause) { $where .= " and "; $where .= $clause; } } if (!isset($_REQUEST['search_form']) || $_REQUEST['search_form'] != 'false') { $search_form->assign("ALPHABETICAL",AlphabeticalSearch('Faq','index','question','true','basic')); $search_form->parse("main"); $search_form->out("main"); echo get_form_footer(); echo "\n
\n"; } // Buttons and View options $other_text = ''; $other_text .='
 
'; // //Retreive the list from Database $list_query = getListQuery("Faq"); if(isset($where) && $where != '') { $list_query .= $where; } if(isset($order_by) && $order_by != '') { $list_query .= ' ORDER BY '.$order_by.' '.$sorder; } $list_result = $adb->query($list_query); //Constructing the list view echo get_form_header($current_module_strings['LBL_LIST_FORM_TITLE'],$other_text, false); $xtpl=new XTemplate ('modules/Faq/ListView.html'); $xtpl->assign("MOD", $mod_strings); $xtpl->assign("APP", $app_strings); $xtpl->assign("IMAGE_PATH",$image_path); //Retreiving the no of rows $noofrows = $adb->num_rows($list_result); //Retreiving the start value from request if(isset($_REQUEST['start']) && $_REQUEST['start'] != '') { $start = $_REQUEST['start']; } else { $start = 1; } //Retreive the Navigation array $navigation_array = getNavigationValues($start, $noofrows, $list_max_entries_per_page); // Setting the record count string if ($navigation_array['start'] == 1) { if($noofrows != 0) $start_rec = $navigation_array['start']; else $start_rec = 0; if($noofrows > $list_max_entries_per_page) { $end_rec = $navigation_array['start'] + $list_max_entries_per_page - 1; } else { $end_rec = $noofrows; } } else { if($navigation_array['next'] > $list_max_entries_per_page) { $start_rec = $navigation_array['next'] - $list_max_entries_per_page; $end_rec = $navigation_array['next'] - 1; } else { $start_rec = $navigation_array['prev'] + $list_max_entries_per_page; $end_rec = $noofrows; } } $record_string= $app_strings[LBL_SHOWING]." " .$start_rec." - ".$end_rec." " .$app_strings[LBL_LIST_OF] ." ".$noofrows; //Retreive the List View Table Header $listview_header = getListViewHeader($focus,"Faq",$url_string,$sorder,$order_by); $xtpl->assign("LISTHEADER", $listview_header); $listview_entries = getListViewEntries($focus,"Faq",$list_result,$navigation_array); $xtpl->assign("LISTHEADER", $listview_header); $xtpl->assign("LISTENTITY", $listview_entries); if($order_by !='') $url_string .="&order_by=".$order_by; if($sorder !='') $url_string .="&sorder=".$sorder; $navigationOutput = getTableHeaderNavigation($navigation_array, $url_string,"Faq"); $xtpl->assign("NAVIGATION", $navigationOutput); $xtpl->assign("RECORD_COUNTS", $record_string); $xtpl->parse("main"); $xtpl->out("main"); ?>