| Server IP : 138.197.176.125 / Your IP : 216.73.217.55 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/modules/Vtiger/uitypes/ |
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.
*************************************************************************************/
class Vtiger_Multiowner_UIType extends Vtiger_Base_UIType {
/**
* Function to get the Template name for the current UI Type object
* @return <String> - Template Name
*/
public function getTemplateName() {
return 'uitypes/MultiOwner.tpl';
}
/**
* Function to get the Display Value, for the current field type with given DB Insert Value
* @param <Object> $value
* @return <Object>
*/
public function getDisplayValue($values, $record=false, $recordInstance=false) {
if($values == NULL && !is_array($values)) return;
foreach($values as $value){
if (self::getOwnerType($value) === 'User') {
$userModel = Users_Record_Model::getCleanInstance('Users');
$userModel->set('id', $value);
$detailViewUrl = $userModel->getDetailViewUrl();
$currentUser = Users_Record_Model::getCurrentUserModel();
if(!$currentUser->isAdminUser()){
return getOwnerName($value);
}
} else {
$currentUser = Users_Record_Model::getCurrentUserModel();
if(!$currentUser->isAdminUser()){
return getOwnerName($value);
}
$recordModel = new Settings_Groups_Record_Model();
$recordModel->set('groupid',$value);
$detailViewUrl = $recordModel->getDetailViewUrl();
}
$displayvalue[] = "<a href=" .$detailViewUrl. ">" .getOwnerName($value). "</a> ";
}
$displayvalue = implode(',',$displayvalue);
return $displayvalue;
}
/**
* Function to know owner is either User or Group
* @param <Integer> userId/GroupId
* @return <String> User/Group
*/
public static function getOwnerType($id) {
$db = PearDatabase::getInstance();
$result = $db->pquery('SELECT 1 FROM vtiger_users WHERE id = ?', array($id));
if ($db->num_rows($result) > 0) {
return 'User';
}
return 'Group';
}
}