mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 16:02:36 +00:00
123 lines
4.7 KiB
PHP
123 lines
4.7 KiB
PHP
<?php
|
|
|
|
#[\AllowDynamicProperties]
|
|
class SugarBeanMock extends SugarBean
|
|
{
|
|
/**
|
|
* a value for testing
|
|
* @var mixed
|
|
*/
|
|
public $foo;
|
|
|
|
/** @noinspection PhpMissingParentConstructorInspection */
|
|
/** @noinspection MagicMethodsValidityInspection */
|
|
|
|
/**
|
|
* SugarBeanMock constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
global $dictionary;
|
|
static $loaded_definitions = array();
|
|
$this->db = DBManagerFactory::getInstance();
|
|
if (empty($this->module_name)) {
|
|
$this->module_name = $this->module_dir;
|
|
}
|
|
if ((!$this->disable_vardefs && empty($loaded_definitions[$this->object_name])) || !empty($GLOBALS['reload_vardefs'])) {
|
|
VardefManager::loadVardef($this->module_dir, $this->object_name);
|
|
|
|
// build $this->column_fields from the field_defs if they exist
|
|
if (!empty($dictionary[$this->object_name]['fields'])) {
|
|
/** @noinspection ForeachSourceInspection */
|
|
foreach ($dictionary[$this->object_name]['fields'] as $key => $value_array) {
|
|
$column_fields[] = $key;
|
|
if (!empty($value_array['required']) && !empty($value_array['name'])) {
|
|
$this->required_fields[$value_array['name']] = 1;
|
|
}
|
|
}
|
|
/** @noinspection PhpUndefinedVariableInspection */
|
|
$this->column_fields = $column_fields;
|
|
}
|
|
|
|
//setup custom fields
|
|
if (!isset($this->custom_fields) &&
|
|
empty($this->disable_custom_fields)
|
|
) {
|
|
$this->setupCustomFields($this->module_dir);
|
|
}
|
|
|
|
if (isset($GLOBALS['dictionary'][$this->object_name]) && !$this->disable_vardefs) {
|
|
$this->field_name_map = $dictionary[$this->object_name]['fields'];
|
|
$this->field_defs = $dictionary[$this->object_name]['fields'];
|
|
|
|
if (!empty($dictionary[$this->object_name]['optimistic_locking'])) {
|
|
$this->optimistic_lock = true;
|
|
}
|
|
}
|
|
$loaded_definitions[$this->object_name]['column_fields'] =& $this->column_fields;
|
|
$loaded_definitions[$this->object_name]['list_fields'] =& $this->list_fields;
|
|
$loaded_definitions[$this->object_name]['required_fields'] =& $this->required_fields;
|
|
$loaded_definitions[$this->object_name]['field_name_map'] =& $this->field_name_map;
|
|
$loaded_definitions[$this->object_name]['field_defs'] =& $this->field_defs;
|
|
} else {
|
|
$this->column_fields =& $loaded_definitions[$this->object_name]['column_fields'];
|
|
$this->list_fields =& $loaded_definitions[$this->object_name]['list_fields'];
|
|
$this->required_fields =& $loaded_definitions[$this->object_name]['required_fields'];
|
|
$this->field_name_map =& $loaded_definitions[$this->object_name]['field_name_map'];
|
|
$this->field_defs =& $loaded_definitions[$this->object_name]['field_defs'];
|
|
$this->added_custom_field_defs = true;
|
|
|
|
if (!isset($this->custom_fields) &&
|
|
empty($this->disable_custom_fields)
|
|
) {
|
|
$this->setupCustomFields($this->module_dir);
|
|
}
|
|
if (!empty($dictionary[$this->object_name]['optimistic_locking'])) {
|
|
$this->optimistic_lock = true;
|
|
}
|
|
}
|
|
|
|
/** @noinspection NotOptimalIfConditionsInspection */
|
|
if ($this->bean_implements('ACL') && !empty($GLOBALS['current_user'])) {
|
|
$this->acl_fields = !(isset($dictionary[$this->object_name]['acl_fields']) && $dictionary[$this->object_name]['acl_fields'] === false);
|
|
}
|
|
$this->populateDefaultValues();
|
|
}
|
|
|
|
/**
|
|
* @param string $value
|
|
* @param bool $time
|
|
* @return string
|
|
* @throws \Exception
|
|
*/
|
|
public function publicParseDateDefault($value, $time = false): string
|
|
{
|
|
return $this->parseDateDefault($value, $time);
|
|
}/** @noinspection MoreThanThreeArgumentsInspection */
|
|
|
|
/**
|
|
* @param array $subpanel_list
|
|
* @param array $subpanel_def
|
|
* @param SugarBean $parentbean
|
|
* @param string $order_by
|
|
* @return array
|
|
*/
|
|
public static function publicBuildSubQueriesForUnion($subpanel_list, $subpanel_def, $parentbean, $order_by): array
|
|
{
|
|
return self::build_sub_queries_for_union($subpanel_list, $subpanel_def, $parentbean, $order_by);
|
|
}
|
|
|
|
/**
|
|
* @param mixed $testValue
|
|
*/
|
|
public function setLoadedRelationships($testValue): void
|
|
{
|
|
$this->loaded_relationships = $testValue;
|
|
}
|
|
|
|
public function getEncryptKeyPublic(): string
|
|
{
|
|
return parent::getEncryptKey();
|
|
}
|
|
}
|