684 lines
20 KiB
PHP
Executable File
684 lines
20 KiB
PHP
Executable File
<?php
|
|
if (! defined ( 'sugarEntry' ) || ! sugarEntry)
|
|
die ( 'Not A Valid Entry Point' );
|
|
/**
|
|
* *******************************************************************************
|
|
* SugarCRM is a customer relationship management program developed by
|
|
* SugarCRM, Inc.
|
|
* Copyright (C) 2004-2010 SugarCRM Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Affero General Public License version 3 as published by the
|
|
* Free Software Foundation with the addition of the following permission added
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License along with
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA.
|
|
*
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU Affero General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
|
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
|
* technical reasons, the Appropriate Legal Notices must display the words
|
|
* "Powered by SugarCRM".
|
|
* ******************************************************************************
|
|
*/
|
|
$dictionary ['User'] = array (
|
|
'table' => 'users',
|
|
'fields' => array (
|
|
// mz
|
|
'asterisk_auto_pickup' => array (
|
|
'name' => 'asterisk_auto_pickup',
|
|
'vname' => 'LBL_ASTERISK_AUTO_PICKUP',
|
|
'type' => 'bool',
|
|
'default' => '0'
|
|
),
|
|
'asterisk_extension' => array (
|
|
'name' => 'asterisk_extension',
|
|
'vname' => 'LBL_ASTERISK_EXTENSION',
|
|
'type' => 'varchar',
|
|
'len' => '25'
|
|
),
|
|
// end mz
|
|
'id' => array (
|
|
'name' => 'id',
|
|
'vname' => 'LBL_ID',
|
|
'type' => 'id',
|
|
'required' => true
|
|
),
|
|
'user_name' => array (
|
|
'name' => 'user_name',
|
|
'vname' => 'LBL_USER_NAME',
|
|
'type' => 'user_name',
|
|
'dbType' => 'varchar',
|
|
'len' => '60',
|
|
'importable' => 'required'
|
|
),
|
|
'user_hash' => array (
|
|
'name' => 'user_hash',
|
|
'vname' => 'LBL_USER_HASH',
|
|
'type' => 'varchar',
|
|
'len' => '32',
|
|
'reportable' => false,
|
|
'importable' => 'false'
|
|
),
|
|
'system_generated_password' => array (
|
|
'name' => 'system_generated_password',
|
|
'vname' => 'LBL_SYSTEM_GENERATED_PASSWORD',
|
|
'type' => 'bool',
|
|
'required' => true,
|
|
'reportable' => false,
|
|
'massupdate' => false
|
|
),
|
|
|
|
'pwd_last_changed' => array (
|
|
'name' => 'pwd_last_changed',
|
|
'vname' => 'LBL_PSW_MODIFIED',
|
|
'type' => 'datetime',
|
|
'required' => false,
|
|
'massupdate' => false
|
|
),
|
|
/**
|
|
* authenticate_id is used by authentication plugins so they may place a quick lookup key for looking up a given user after authenticating through the plugin
|
|
*/
|
|
'authenticate_id' => array (
|
|
'name' => 'authenticate_id',
|
|
'vname' => 'LBL_AUTHENTICATE_ID',
|
|
'type' => 'varchar',
|
|
'len' => '100',
|
|
'reportable' => false,
|
|
'importable' => 'false'
|
|
),
|
|
/**
|
|
* sugar_login will force the user to use sugar authentication
|
|
* regardless of what authentication the system is configured to use
|
|
*/
|
|
'sugar_login' => array (
|
|
'name' => 'sugar_login',
|
|
'vname' => 'LBL_SUGAR_LOGIN',
|
|
'type' => 'bool',
|
|
'default' => '1',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'importable' => false
|
|
),
|
|
'first_name' => array (
|
|
'name' => 'first_name',
|
|
'vname' => 'LBL_FIRST_NAME',
|
|
'dbType' => 'varchar',
|
|
'type' => 'name',
|
|
'len' => '30'
|
|
),
|
|
'google_login' => array (
|
|
'name' => 'google_login',
|
|
'vname' => 'LBL_FIRST_NAME',
|
|
'dbType' => 'varchar',
|
|
'type' => 'name',
|
|
'len' => '200'
|
|
),
|
|
'mail_server' => array (
|
|
'name' => 'mail_server',
|
|
'vname' => 'LBL_FIRST_NAME',
|
|
'dbType' => 'varchar',
|
|
'type' => 'name',
|
|
'len' => '205'
|
|
),
|
|
'google_calendar_name' => array (
|
|
'name' => 'google_calendar_name',
|
|
'vname' => 'LBL_FIRST_NAME',
|
|
'dbType' => 'varchar',
|
|
'type' => 'name',
|
|
'len' => '30'
|
|
),
|
|
'last_name' => array (
|
|
'name' => 'last_name',
|
|
'vname' => 'LBL_LAST_NAME',
|
|
'dbType' => 'varchar',
|
|
'type' => 'name',
|
|
'len' => '30',
|
|
'importable' => 'required'
|
|
),
|
|
'full_name' => array (
|
|
'name' => 'full_name',
|
|
'rname' => 'full_name',
|
|
'vname' => 'LBL_NAME',
|
|
'type' => 'name',
|
|
'fields' => array (
|
|
'first_name',
|
|
'last_name'
|
|
),
|
|
'source' => 'non-db',
|
|
'sort_on' => 'last_name',
|
|
'sort_on2' => 'first_name',
|
|
'db_concat_fields' => array (
|
|
0 => 'first_name',
|
|
1 => 'last_name'
|
|
),
|
|
'len' => '510'
|
|
),
|
|
'reverse_full_name' => array (
|
|
'name' => 'reverse_full_name',
|
|
'rname' => 'reverse_full_name',
|
|
'vname' => 'LBL_NAME',
|
|
'type' => 'name',
|
|
'fields' => array (
|
|
'last_name',
|
|
'first_name',
|
|
),
|
|
'source' => 'non-db',
|
|
'sort_on' => 'last_name',
|
|
'sort_on2' => 'first_name',
|
|
'db_concat_fields' => array (
|
|
0 => 'last_name',
|
|
1 => 'first_name',
|
|
),
|
|
'len' => '510'
|
|
),
|
|
|
|
'name' => array (
|
|
'name' => 'name',
|
|
'rname' => 'name',
|
|
'vname' => 'LBL_NAME',
|
|
'type' => 'varchar',
|
|
'source' => 'non-db',
|
|
'len' => '510',
|
|
'db_concat_fields' => array (
|
|
0 => 'last_name',
|
|
1 => 'first_name',
|
|
|
|
),
|
|
'importable' => 'false'
|
|
),
|
|
'reports_to_id' => array (
|
|
'name' => 'reports_to_id',
|
|
'vname' => 'LBL_REPORTS_TO_ID',
|
|
'type' => 'id',
|
|
'required' => false
|
|
),
|
|
'reports_to_name' => array (
|
|
'name' => 'reports_to_name',
|
|
'vname' => 'LBL_REPORTS_TO_NAME',
|
|
'type' => 'relate',
|
|
'reportable' => false,
|
|
'source' => 'non-db',
|
|
'table' => 'users',
|
|
'id_name' => 'reports_to_id',
|
|
'module' => 'Users',
|
|
'duplicate_merge' => 'disabled'
|
|
),
|
|
'is_admin' => array (
|
|
'name' => 'is_admin',
|
|
'vname' => 'LBL_IS_ADMIN',
|
|
'type' => 'bool',
|
|
'default' => '0'
|
|
),
|
|
'external_auth_only' => array (
|
|
'name' => 'external_auth_only',
|
|
'vname' => 'LBL_EXT_AUTHENTICATE',
|
|
'type' => 'bool',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'default' => '0'
|
|
),
|
|
'receive_notifications' => array (
|
|
'name' => 'receive_notifications',
|
|
'vname' => 'LBL_RECEIVE_NOTIFICATIONS',
|
|
'type' => 'bool',
|
|
'default' => '1',
|
|
'massupdate' => false
|
|
),
|
|
'description' => array (
|
|
'name' => 'description',
|
|
'vname' => 'LBL_DESCRIPTION',
|
|
'type' => 'text'
|
|
),
|
|
'date_entered' => array (
|
|
'name' => 'date_entered',
|
|
'vname' => 'LBL_DATE_ENTERED',
|
|
'type' => 'datetime',
|
|
'required' => true
|
|
),
|
|
'date_modified' => array (
|
|
'name' => 'date_modified',
|
|
'vname' => 'LBL_DATE_MODIFIED',
|
|
'type' => 'datetime',
|
|
'required' => true
|
|
),
|
|
'modified_user_id' => array (
|
|
'name' => 'modified_user_id',
|
|
'rname' => 'user_name',
|
|
'id_name' => 'modified_user_id',
|
|
'vname' => 'LBL_MODIFIED_BY_ID',
|
|
'type' => 'assigned_user_name',
|
|
'table' => 'users',
|
|
'isnull' => 'false',
|
|
'dbType' => 'id'
|
|
),
|
|
'modified_by_name' => array (
|
|
'name' => 'modified_by_name',
|
|
'vname' => 'LBL_MODIFIED_BY',
|
|
'type' => 'varchar',
|
|
'source' => 'non-db'
|
|
),
|
|
'created_by' => array (
|
|
'name' => 'created_by',
|
|
'rname' => 'user_name',
|
|
'id_name' => 'modified_user_id',
|
|
'vname' => 'LBL_ASSIGNED_TO',
|
|
'type' => 'assigned_user_name',
|
|
'table' => 'users',
|
|
'isnull' => 'false',
|
|
'dbType' => 'id'
|
|
),
|
|
'created_by_name' => array (
|
|
'name' => 'created_by_name',
|
|
'type' => 'varchar',
|
|
'source' => 'non-db',
|
|
'importable' => 'false'
|
|
),
|
|
'title' => array (
|
|
'name' => 'title',
|
|
'vname' => 'LBL_TITLE',
|
|
'type' => 'varchar',
|
|
'len' => '50'
|
|
),
|
|
'dbasename' => array (
|
|
'name' => 'dbasename',
|
|
'vname' => 'LBL_TITLE',
|
|
'type' => 'varchar',
|
|
'len' => '45'
|
|
),
|
|
'department' => array (
|
|
'name' => 'department',
|
|
'vname' => 'LBL_DEPARTMENT',
|
|
'type' => 'varchar',
|
|
'len' => '50'
|
|
),
|
|
'phone_home' => array (
|
|
'name' => 'phone_home',
|
|
'vname' => 'LBL_HOME_PHONE',
|
|
'type' => 'varchar',
|
|
'len' => '50'
|
|
),
|
|
'phone_mobile' => array (
|
|
'name' => 'phone_mobile',
|
|
'vname' => 'LBL_MOBILE_PHONE',
|
|
'type' => 'varchar',
|
|
'len' => '50'
|
|
),
|
|
'phone_work' => array (
|
|
'name' => 'phone_work',
|
|
'vname' => 'LBL_WORK_PHONE',
|
|
'type' => 'varchar',
|
|
'len' => '50'
|
|
),
|
|
'phone_other' => array (
|
|
'name' => 'phone_other',
|
|
'vname' => 'LBL_OTHER_PHONE',
|
|
'type' => 'varchar',
|
|
'len' => '50'
|
|
),
|
|
'phone_fax' => array (
|
|
'name' => 'phone_fax',
|
|
'vname' => 'LBL_FAX_PHONE',
|
|
'type' => 'varchar',
|
|
'len' => '50'
|
|
),
|
|
'status' => array (
|
|
'name' => 'status',
|
|
'vname' => 'LBL_STATUS',
|
|
'type' => 'enum',
|
|
'len' => '25',
|
|
'options' => 'user_status_dom',
|
|
'importable' => 'required'
|
|
),
|
|
'address_street' => array (
|
|
'name' => 'address_street',
|
|
'vname' => 'LBL_ADDRESS_STREET',
|
|
'type' => 'varchar',
|
|
'len' => '150'
|
|
),
|
|
'address_city' => array (
|
|
'name' => 'address_city',
|
|
'vname' => 'LBL_ADDRESS_CITY',
|
|
'type' => 'varchar',
|
|
'len' => '100'
|
|
),
|
|
'address_state' => array (
|
|
'name' => 'address_state',
|
|
'vname' => 'LBL_ADDRESS_STATE',
|
|
'type' => 'varchar',
|
|
'len' => '100'
|
|
),
|
|
'address_country' => array (
|
|
'name' => 'address_country',
|
|
'vname' => 'LBL_ADDRESS_COUNTRY',
|
|
'type' => 'varchar',
|
|
'len' => '25'
|
|
),
|
|
'address_postalcode' => array (
|
|
'name' => 'address_postalcode',
|
|
'vname' => 'LBL_ADDRESS_POSTALCODE',
|
|
'type' => 'varchar',
|
|
'len' => '9'
|
|
),
|
|
'deleted' => array (
|
|
'name' => 'deleted',
|
|
'vname' => 'LBL_DELETED',
|
|
'type' => 'bool',
|
|
'required' => false,
|
|
'reportable' => false
|
|
),
|
|
'stock_name' =>
|
|
array (
|
|
'name' => 'stock_name',
|
|
'vname' => 'LBL_STOCK_NAME',
|
|
'type' => 'relate',
|
|
'reportable' => false,
|
|
'source' => 'non-db',
|
|
'table' => 'ecmstocks',
|
|
'id_name' => 'stock_id',
|
|
'module' => 'EcmStocks',
|
|
'group'=>'stock_name',
|
|
'massupdate' => false,
|
|
'required' => false,
|
|
),
|
|
'stock_id' =>
|
|
array (
|
|
'name' => 'stock_id',
|
|
'type' => 'enum',
|
|
'module' => 'EcmStocks',
|
|
'table'=>'ecmstocks',
|
|
'vname' => 'LBL_STOCK_NAME',
|
|
'group'=>'stock_name',
|
|
'options'=>'ecmstocks_list_dom',
|
|
'required' => false,
|
|
'massupdate'=>false,
|
|
),
|
|
'cash_name' =>
|
|
array (
|
|
'name' => 'cash_name',
|
|
'vname' => 'LBL_CASH_NAME',
|
|
'type' => 'relate',
|
|
'reportable' => false,
|
|
'source' => 'non-db',
|
|
'table' => 'ecmcashs',
|
|
'id_name' => 'cash_id',
|
|
'module' => 'EcmCashs',
|
|
'group'=>'cash_name',
|
|
'massupdate' => false,
|
|
'required' => false,
|
|
),
|
|
'cash_id' =>
|
|
array (
|
|
'name' => 'cash_id',
|
|
'type' => 'enum',
|
|
'module' => 'EcmCashs',
|
|
'table'=>'ecmcashs',
|
|
'vname' => 'LBL_CASH_NAME',
|
|
'group'=>'cash_name',
|
|
'options'=>'ecmcashs_list_dom',
|
|
'required' => false,
|
|
'massupdate'=>false,
|
|
),
|
|
'portal_only' => array (
|
|
'name' => 'portal_only',
|
|
'vname' => 'LBL_PORTAL_ONLY_USER',
|
|
'type' => 'bool',
|
|
'massupdate' => false,
|
|
'default' => '0'
|
|
),
|
|
'employee_status' => array (
|
|
'name' => 'employee_status',
|
|
'vname' => 'LBL_EMPLOYEE_STATUS',
|
|
'type' => 'varchar',
|
|
'function' => array (
|
|
'name' => 'getEmployeeStatusOptions',
|
|
'returns' => 'html',
|
|
'include' => 'modules/Employees/EmployeeStatus.php'
|
|
),
|
|
'len' => '25'
|
|
),
|
|
'messenger_id' => array (
|
|
'name' => 'messenger_id',
|
|
'vname' => 'LBL_MESSENGER_ID',
|
|
'type' => 'varchar',
|
|
'len' => '25'
|
|
),
|
|
'messenger_type' => array (
|
|
'name' => 'messenger_type',
|
|
'vname' => 'LBL_MESSENGER_TYPE',
|
|
'type' => 'varchar',
|
|
'function' => array (
|
|
'name' => 'getMessengerTypeOptions',
|
|
'returns' => 'html',
|
|
'include' => 'modules/Employees/EmployeeStatus.php'
|
|
),
|
|
'len' => '25'
|
|
),
|
|
'calls' => array (
|
|
'name' => 'calls',
|
|
'type' => 'link',
|
|
'relationship' => 'calls_users',
|
|
'source' => 'non-db',
|
|
'vname' => 'LBL_CALLS'
|
|
),
|
|
'meetings' => array (
|
|
'name' => 'meetings',
|
|
'type' => 'link',
|
|
'relationship' => 'meetings_users',
|
|
'source' => 'non-db',
|
|
'vname' => 'LBL_MEETINGS'
|
|
),
|
|
'contacts_sync' => array (
|
|
'name' => 'contacts',
|
|
'type' => 'link',
|
|
'relationship' => 'contacts_users',
|
|
'source' => 'non-db',
|
|
'vname' => 'LBL_CONTACTS_SYNC'
|
|
),
|
|
'reports_to_link' => array (
|
|
'name' => 'reports_to_link',
|
|
'type' => 'link',
|
|
'relationship' => 'user_direct_reports',
|
|
'link_type' => 'one',
|
|
'side' => 'right',
|
|
'source' => 'non-db',
|
|
'vname' => 'LBL_REPORTS_TO'
|
|
),
|
|
'email1' => array (
|
|
'name' => 'email1',
|
|
'vname' => 'LBL_EMAIL',
|
|
'type' => 'varchar',
|
|
'function' => array (
|
|
'name' => 'getEmailAddressWidget',
|
|
'returns' => 'html'
|
|
),
|
|
'source' => 'non-db',
|
|
'group' => 'email1',
|
|
'merge_filter' => 'enabled',
|
|
'required' => true
|
|
),
|
|
'email_addresses' => array (
|
|
'name' => 'email_addresses',
|
|
'type' => 'link',
|
|
'relationship' => 'users_email_addresses',
|
|
'module' => 'EmailAddress',
|
|
'bean_name' => 'EmailAddress',
|
|
'source' => 'non-db',
|
|
'vname' => 'LBL_EMAIL_ADDRESSES',
|
|
'reportable' => false,
|
|
'required' => true
|
|
),
|
|
'email_addresses_primary' => array (
|
|
'name' => 'email_addresses_primary',
|
|
'type' => 'link',
|
|
'relationship' => 'users_email_addresses_primary',
|
|
'source' => 'non-db',
|
|
'vname' => 'LBL_EMAIL_ADDRESS_PRIMARY',
|
|
'duplicate_merge' => 'disabled',
|
|
'required' => true
|
|
),
|
|
'aclroles' => array (
|
|
'name' => 'aclroles',
|
|
'type' => 'link',
|
|
'relationship' => 'acl_roles_users',
|
|
'source' => 'non-db',
|
|
'side' => 'right',
|
|
'vname' => 'LBL_ROLES'
|
|
),
|
|
'is_group' => array (
|
|
'name' => 'is_group',
|
|
'vname' => 'LBL_GROUP_USER',
|
|
'type' => 'bool',
|
|
'massupdate' => false
|
|
) ,
|
|
/* to support Meetings SubPanels */
|
|
'c_accept_status_fields' => array (
|
|
'name' => 'c_accept_status_fields',
|
|
'rname' => 'id',
|
|
'relationship_fields' => array (
|
|
'id' => 'accept_status_id',
|
|
'accept_status' => 'accept_status_name'
|
|
),
|
|
'vname' => 'LBL_LIST_ACCEPT_STATUS',
|
|
'type' => 'relate',
|
|
'link' => 'calls',
|
|
'link_type' => 'relationship_info',
|
|
'source' => 'non-db',
|
|
'importable' => 'false'
|
|
),
|
|
'm_accept_status_fields' => array (
|
|
'name' => 'm_accept_status_fields',
|
|
'rname' => 'id',
|
|
'relationship_fields' => array (
|
|
'id' => 'accept_status_id',
|
|
'accept_status' => 'accept_status_name'
|
|
),
|
|
'vname' => 'LBL_LIST_ACCEPT_STATUS',
|
|
'type' => 'relate',
|
|
'link' => 'meetings',
|
|
'link_type' => 'relationship_info',
|
|
'source' => 'non-db',
|
|
'importable' => 'false'
|
|
),
|
|
'accept_status_id' => array (
|
|
'name' => 'accept_status_id',
|
|
'type' => 'varchar',
|
|
'source' => 'non-db',
|
|
'vname' => 'LBL_LIST_ACCEPT_STATUS',
|
|
'importable' => 'false'
|
|
),
|
|
'accept_status_name' => array (
|
|
'name' => 'accept_status_name',
|
|
'type' => 'enum',
|
|
'source' => 'non-db',
|
|
'vname' => 'LBL_LIST_ACCEPT_STATUS',
|
|
'options' => 'dom_meeting_accept_status',
|
|
'massupdate' => false
|
|
),
|
|
'prospect_lists' => array (
|
|
'name' => 'prospect_lists',
|
|
'type' => 'link',
|
|
'relationship' => 'prospect_list_users',
|
|
'module' => 'ProspectLists',
|
|
'source' => 'non-db',
|
|
'vname' => 'LBL_PROSPECT_LIST'
|
|
),
|
|
'holidays' => array (
|
|
'name' => 'holidays',
|
|
'type' => 'link',
|
|
'relationship' => 'users_holidays',
|
|
'source' => 'non-db',
|
|
'side' => 'right',
|
|
'vname' => 'LBL_HOLIDAYS'
|
|
)
|
|
)
|
|
,
|
|
'indices' => array (
|
|
array (
|
|
'name' => 'userspk',
|
|
'type' => 'primary',
|
|
'fields' => array (
|
|
'id'
|
|
)
|
|
),
|
|
array (
|
|
'name' => 'idx_user_name',
|
|
'type' => 'index',
|
|
'fields' => array (
|
|
'user_name',
|
|
'is_group',
|
|
'status',
|
|
'last_name',
|
|
'first_name',
|
|
'id'
|
|
)
|
|
)
|
|
),
|
|
'relationships' => array (
|
|
'user_direct_reports' => array (
|
|
'lhs_module' => 'Users',
|
|
'lhs_table' => 'users',
|
|
'lhs_key' => 'id',
|
|
'rhs_module' => 'Users',
|
|
'rhs_table' => 'users',
|
|
'rhs_key' => 'reports_to_id',
|
|
'relationship_type' => 'one-to-many'
|
|
),
|
|
'users_users_signatures' => array (
|
|
'lhs_module' => 'Users',
|
|
'lhs_table' => 'users',
|
|
'lhs_key' => 'id',
|
|
'rhs_module' => 'UserSignature',
|
|
'rhs_table' => 'users_signatures',
|
|
'rhs_key' => 'user_id',
|
|
'relationship_type' => 'one-to-many'
|
|
),
|
|
'users_email_addresses' => array (
|
|
'lhs_module' => "Users",
|
|
'lhs_table' => 'users',
|
|
'lhs_key' => 'id',
|
|
'rhs_module' => 'EmailAddresses',
|
|
'rhs_table' => 'email_addresses',
|
|
'rhs_key' => 'id',
|
|
'relationship_type' => 'many-to-many',
|
|
'join_table' => 'email_addr_bean_rel',
|
|
'join_key_lhs' => 'bean_id',
|
|
'join_key_rhs' => 'email_address_id',
|
|
'relationship_role_column' => 'bean_module',
|
|
'relationship_role_column_value' => "Users"
|
|
),
|
|
'users_email_addresses_primary' => array (
|
|
'lhs_module' => "Users",
|
|
'lhs_table' => 'users',
|
|
'lhs_key' => 'id',
|
|
'rhs_module' => 'EmailAddresses',
|
|
'rhs_table' => 'email_addresses',
|
|
'rhs_key' => 'id',
|
|
'relationship_type' => 'many-to-many',
|
|
'join_table' => 'email_addr_bean_rel',
|
|
'join_key_lhs' => 'bean_id',
|
|
'join_key_rhs' => 'email_address_id',
|
|
'relationship_role_column' => 'primary_address',
|
|
'relationship_role_column_value' => '1'
|
|
)
|
|
)
|
|
)
|
|
;
|