HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: /home4/cca63905/public_html/guiaweb/htdocs/core/commonfieldsinexport.inc.php
<?php
/* Copyright (C) 2024		MDW							<mdeweerd@users.noreply.github.com>
 */
'
@phan-var-force DolibarrModules $this
@phan-var-force int $r
';

if (empty($keyforclass) || empty($keyforclassfile) || empty($keyforelement)) {
	//print $keyforclass.' - '.$keyforclassfile.' - '.$keyforelement;
	dol_print_error(null, 'include of file commonfieldsinexport.inc.php was done but var $keyforclass or $keyforclassfile or $keyforelement was not set');
	exit;
}
if (empty($keyforalias)) {
	$keyforalias = 't';
}

dol_include_once($keyforclassfile);
if (class_exists($keyforclass)) {
	$tmpobject = new $keyforclass($this->db);

	// Add common fields
	foreach ($tmpobject->fields as $keyfield => $valuefield) {
		$fieldname = $keyforalias.'.'.$keyfield;
		$fieldlabel = ucfirst($valuefield['label']);
		$typeFilter = "Text";
		$typefield = preg_replace('/\(.*$/', '', $valuefield['type']); // double(24,8) -> double
		switch ($typefield) {
			case 'int':
			case 'integer':
			case 'double':
			case 'price':
				$typeFilter = "Numeric";
				break;
			case 'date':
			case 'datetime':
			case 'timestamp':
				$typeFilter = "Date";
				break;
			case 'boolean':
				$typeFilter = "Boolean";
				break;
				/*
				 * case 'sellist':
				 * $tmp='';
				 * $tmpparam=jsonOrUnserialize($obj->param); // $tmp ay be array 'options' => array 'c_currencies:code_iso:code_iso' => null
				 * if ($tmpparam['options'] && is_array($tmpparam['options'])) {
				 * $tmpkeys=array_keys($tmpparam['options']);
				 * $tmp=array_shift($tmpkeys);
				 * }
				 * if (preg_match('/[a-z0-9_]+:[a-z0-9_]+:[a-z0-9_]+/', $tmp)) $typeFilter="List:".$tmp;
				 * break;
				 */
		}
		$helpfield = '';
		if (!empty($valuefield['help'])) {
			$helpfield = preg_replace('/\(.*$/', '', $valuefield['help']);
		}
		if ($valuefield['enabled']) {
			$this->export_fields_array[$r][$fieldname] = $fieldlabel;
			$this->export_TypeFields_array[$r][$fieldname] = $typeFilter;
			$this->export_entities_array[$r][$fieldname] = $keyforelement;
			$this->export_help_array[$r][$fieldname] = $helpfield;
		}
	}
} else {
	dol_print_error($this->db, 'Failed to find class '.$keyforclass.', even after the include of '.$keyforclassfile);
}
// End add common fields