| Server IP : 138.197.176.125 / Your IP : 216.73.216.41 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/soltelcocrm/include/ListView/ |
Upload File : |
<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*
********************************************************************************/
require_once('include/logging.php');
require_once('include/ListView/ListViewSession.php');
/**initializes Related ListViewSession
* Portions created by vtigerCRM are Copyright (C) vtigerCRM.
* All Rights Reserved.
*/
class RelatedListViewSession {
var $module = null;
var $start = null;
var $sorder = null;
var $sortby = null;
var $page_view = null;
function __construct()
{
global $log,$currentModule;
$log->debug("Entering RelatedListViewSession() method ...");
$this->module = $currentModule;
$this->start =1;
}
function RelatedListViewSession() {
// PHP4-style constructor.
// This will NOT be invoked, unless a sub-class that extends `foo` calls it.
// In that case, call the new-style constructor to keep compatibility.
self::__construct();
}
public static function addRelatedModuleToSession($relationId, $header) {
global $currentModule;
$_SESSION['relatedlist'][$currentModule][$relationId] = $header;
$start = RelatedListViewSession::getRequestStartPage();
RelatedListViewSession::saveRelatedModuleStartPage($relationId, $start);
}
public static function removeRelatedModuleFromSession($relationId, $header) {
global $currentModule;
unset($_SESSION['relatedlist'][$currentModule][$relationId]);
}
public static function getRelatedModulesFromSession() {
global $currentModule;
$allRelatedModuleList = isPresentRelatedLists($currentModule);
$moduleList = array();
if(is_array($_SESSION['relatedlist'][$currentModule])){
foreach ($allRelatedModuleList as $relationId=>$label) {
if(array_key_exists($relationId, $_SESSION['relatedlist'][$currentModule])){
$moduleList[] = $_SESSION['relatedlist'][$currentModule][$relationId];
}
}
}
return $moduleList;
}
public static function saveRelatedModuleStartPage($relationId, $start) {
global $currentModule;
$_SESSION['rlvs'][$currentModule][$relationId]['start'] = $start;
}
public static function getCurrentPage($relationId) {
global $currentModule;
if(!empty($_SESSION['rlvs'][$currentModule][$relationId]['start'])){
return $_SESSION['rlvs'][$currentModule][$relationId]['start'];
}
return 1;
}
public static function getRequestStartPage(){
$start = $_REQUEST['start'];
if(!is_numeric($start)){
$start = 1;
}
if($start < 1){
$start = 1;
}
$start = ceil($start);
return $start;
}
public static function getRequestCurrentPage($relationId, $query) {
global $list_max_entries_per_page, $adb;
$start = 1;
if(!empty($_REQUEST['start'])){
$start = $_REQUEST['start'];
if($start == 'last'){
$count_result = $adb->query( Vtiger_Functions::mkCountQuery( $query));
$noofrows = $adb->query_result($count_result,0,"count");
if($noofrows > 0){
$start = ceil($noofrows/$list_max_entries_per_page);
}
}
if(!is_numeric($start)){
$start = 1;
}elseif($start < 1){
$start = 1;
}
$start = ceil($start);
}else {
$start = RelatedListViewSession::getCurrentPage($relationId);
}
return $start;
}
}
?>