>>>>>> $oCustomView = new CustomView("Notes"); $customviewcombo_html = $oCustomView->getCustomViewCombo(); if(isset($_REQUEST['viewname']) == false) { if($oCustomView->setdefaultviewid != "") { $viewid = $oCustomView->setdefaultviewid; }else { $viewid = "0"; } }else { $viewid = $_REQUEST['viewname']; } //<<<<>>>> if (!isset($_REQUEST['search_form']) || $_REQUEST['search_form'] != 'false') { // Stick the form header out there. $search_form=new XTemplate ('modules/Notes/SearchForm.html'); $search_form->assign("MOD", $mod_strings); $search_form->assign("APP", $app_strings); $search_form->assign("VIEWID",$viewid); $search_form->assign("JAVASCRIPT", get_clear_form_js()); $search_form->assign("ALPHABETICAL",AlphabeticalSearch('Notes','index','title','true','basic',"","","","",$viewid)); if(isset($_REQUEST['query'])) { if(isset($_REQUEST['title'])) $search_form->assign("NAME", $_REQUEST['title']); if(isset($_REQUEST['contact_name'])) $search_form->assign("CONTACT_NAME", $_REQUEST['contact_name']); } $search_form->parse("main"); echo get_form_header($mod_strings['LBL_SEARCH_FORM_TITLE'], "", false); $search_form->out("main"); echo get_form_footer(); echo "\n
\n"; } if (!isset($where)) $where = ""; if (isset($_REQUEST['order_by'])) $order_by = $_REQUEST['order_by']; $url_string = ''; // assigning http url string $sorder = 'ASC'; // Default sort order if(isset($_REQUEST['sorder']) && $_REQUEST['sorder'] != '') $sorder = $_REQUEST['sorder']; if(isset($_REQUEST['query']) && $_REQUEST['query'] == 'true') { // we have a query $url_string .="&query=true"; if (isset($_REQUEST['title'])) $name = $_REQUEST['title']; if (isset($_REQUEST['contact_name'])) $contact_name = $_REQUEST['contact_name']; $where_clauses = Array(); if(isset($name) && $name != '') { array_push($where_clauses, "notes.title like ".PearDatabase::quote($name.'%').""); $url_string .= "&title=".$name; } if(isset($contact_name) && $contact_name != '') { $contact_names = explode(" ", $contact_name); foreach ($contact_names as $name) { array_push($where_clauses, "(contactdetails.firstname like ".PearDatabase::quote($name.'%')." OR contactdetails.lastname like ".PearDatabase::quote($name.'%').")"); } $url_string .= "&contact_name=".$contact_name; } $where = ""; if (isset($where_clauses)) { foreach($where_clauses as $clause) { if($where != "") $where .= " and "; $where .= $clause; } } $log->info("Here is the where clause for the list view: $where"); } /* global $note_title; $display_title = $mod_strings['LBL_LIST_FORM_TITLE']; if ($note_title) $display_title = $note_title; $ListView = new ListView(); $ListView->initNewXTemplate( 'modules/Notes/ListView.html',$mod_strings); $ListView->setHeaderTitle($display_title ); $ListView->setQuery($where, "", "notes.date_entered DESC", "NOTE"); $ListView->processListView($seedNote, "main", "NOTE"); */ $other_text = '
'; if(isPermitted('Notes',2,'') == 'yes') { $other_text .=''; } if($viewid == 0) { $cvHTML = 'Edit | Delete| Create View'; }else { $cvHTML = 'Edit | Delete | Create View'; } $other_text .=''.$app_strings[LBL_VIEW].' '.$cvHTML.'
'; // $focus = new Note(); echo get_form_header($current_module_strings['LBL_LIST_FORM_TITLE'],$other_text, false); $xtpl=new XTemplate ('modules/Notes/ListView.html'); global $theme; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; $xtpl->assign("MOD", $mod_strings); $xtpl->assign("APP", $app_strings); $xtpl->assign("IMAGE_PATH",$image_path); //Retreive the list from Database //<<<<<<<<>>>>>>>> if($viewid != "0") { $listquery = getListQuery("Notes"); $query = $oCustomView->getModifiedCvListQuery($viewid,$listquery,"Notes"); }else { $query = getListQuery("Notes"); } //<<<<<<<>>>>>>>> if(isset($where) && $where != '') { $query .= ' and '.$where; } $query .= ' group by notes.notesid'; if(isset($order_by) && $order_by != '') { $query .= ' ORDER BY '.$order_by.' '.$sorder; } else { $query .= ' order by crmentity.modifiedtime ASC'; } $list_result = $adb->query($query); //Retreiving the no of rows $noofrows = $adb->num_rows($list_result); $view_script = ""; //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 if($viewid !='') $url_string .="&viewname=".$viewid; $listview_header = getListViewHeader($focus,"Notes",$url_string,$sorder,$order_by,"",$oCustomView); $xtpl->assign("LISTHEADER", $listview_header); $listview_entries = getListViewEntries($focus,"Notes",$list_result,$navigation_array,"","","EditView","Delete",$oCustomView); $xtpl->assign("LISTENTITY", $listview_entries); $xtpl->assign("SELECT_SCRIPT", $view_script); if($order_by !='') $url_string .="&order_by=".$order_by; if($sorder !='') $url_string .="&sorder=".$sorder; $navigationOutput = getTableHeaderNavigation($navigation_array, $url_string,"Notes","index",$viewid); $xtpl->assign("NAVIGATION", $navigationOutput); $xtpl->assign("RECORD_COUNTS", $record_string); $xtpl->parse("main"); $xtpl->out("main"); ?>