46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<?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 'modules/Import/api/UserInput.php';
|
|
|
|
class Import_API_Request extends Import_API_UserInput {
|
|
|
|
function get($key) {
|
|
if(isset($this->valuemap[$key])) {
|
|
$value = $this->valuemap[$key];
|
|
if(Zend_Json::decode($value) != null) {
|
|
$value = Zend_Json::decode($value);
|
|
}
|
|
|
|
if(is_array($value)) {
|
|
$purifiedValue = array();
|
|
foreach($value as $key => $val) {
|
|
$purifiedValue[$key] = vtlib_purify($val);
|
|
}
|
|
} else {
|
|
$purifiedValue = vtlib_purify($value);
|
|
}
|
|
return $purifiedValue;
|
|
}
|
|
return '';
|
|
}
|
|
|
|
function getString($key) {
|
|
if(isset($this->valuemap[$key])) {
|
|
$value = $this->valuemap[$key];
|
|
if(Zend_Json::decode($value) != null) {
|
|
return $this->valuemap[$key];
|
|
} else {
|
|
return vtlib_purify($this->valuemap[$key]);
|
|
}
|
|
}
|
|
return '';
|
|
}
|
|
} |