mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-03-16 14:23:33 +00:00
removing an outdated file
This commit is contained in:
parent
330048b8a6
commit
fdbac40579
2 changed files with 18 additions and 141 deletions
|
@ -2396,9 +2396,8 @@ class SugarBean
|
|||
if ($this->hasEmails() && !empty($this->email_addresses_non_primary)
|
||||
&& is_array($this->email_addresses_non_primary)) {
|
||||
// Add each mail to the account
|
||||
if (!isset($this->emailAddress)) {
|
||||
$GLOBALS['log']->fatal('Undefined property: SugarBeanMock::$emailAddress');
|
||||
} else {
|
||||
if (isset($this->emailAddress)) {
|
||||
if ($this->emailAddress instanceof EmailAddress) {
|
||||
foreach ($this->email_addresses_non_primary as $mail) {
|
||||
$this->emailAddress->addAddress($mail);
|
||||
}
|
||||
|
@ -2411,6 +2410,11 @@ class SugarBean
|
|||
'',
|
||||
'',
|
||||
$this->in_workflow);
|
||||
} else {
|
||||
DatabaseManager::getLogger()->fatal('SugarBeanMock::$emailAddress should be an EmailAddress, ' . gettype($this->emailAddress) . ' given.');
|
||||
}
|
||||
} else {
|
||||
DatabaseManager::getLogger()->fatal('SugarBeanMock::$emailAddress is not set, email address(es) is not applied to Bean.');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,127 +0,0 @@
|
|||
<?php
|
||||
|
||||
|
||||
//class SugarBeanMock extends SugarBean
|
||||
//{
|
||||
//
|
||||
// /**
|
||||
// * a value for testing
|
||||
// * @var mixed
|
||||
// */
|
||||
// public $foo;
|
||||
//
|
||||
// /** @noinspection SenselessMethodDuplicationInspection */
|
||||
// /** @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
|
||||
// /** @noinspection UnSafeIsSetOverArrayInspection */
|
||||
// if (!isset($this->custom_fields) &&
|
||||
// empty($this->disable_custom_fields)
|
||||
// ) {
|
||||
// $this->setupCustomFields($this->module_dir);
|
||||
// }
|
||||
//
|
||||
// /** @noinspection NotOptimalIfConditionsInspection */
|
||||
// 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;
|
||||
//
|
||||
// /** @noinspection UnSafeIsSetOverArrayInspection */
|
||||
// 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)
|
||||
// {
|
||||
// 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)
|
||||
// {
|
||||
// return self::build_sub_queries_for_union($subpanel_list, $subpanel_def, $parentbean, $order_by);
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * @param mixed $testValue
|
||||
// */
|
||||
// public function setLoadedRelationships($testValue)
|
||||
// {
|
||||
// $this->loaded_relationships = $testValue;
|
||||
// }
|
||||
//
|
||||
// public function getEncryptKeyPublic()
|
||||
// {
|
||||
// return parent::getEncryptKey();
|
||||
// }
|
||||
//}
|
Loading…
Reference in a new issue