|
iTx Technologies offre gratuitement
|
||
[Vue sommaire] [Imprimer] [Vue textuelle]
1 <?php 2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); 3 /** 4 * Table definition file for the project_relation table 5 * 6 * SugarCRM is a customer relationship management program developed by 7 * SugarCRM, Inc. Copyright (C) 2004 - 2009 SugarCRM Inc. 8 * 9 * This program is free software; you can redistribute it and/or modify it under 10 * the terms of the GNU General Public License version 3 as published by the 11 * Free Software Foundation with the addition of the following permission added 12 * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK 13 * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY 14 * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. 15 * 16 * This program is distributed in the hope that it will be useful, but WITHOUT 17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 18 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 19 * details. 20 * 21 * You should have received a copy of the GNU General Public License along with 22 * this program; if not, see http://www.gnu.org/licenses or write to the Free 23 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 24 * 02110-1301 USA. 25 * 26 * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road, 27 * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com. 28 * 29 * The interactive user interfaces in modified source and object code versions 30 * of this program must display Appropriate Legal Notices, as required under 31 * Section 5 of the GNU General Public License version 3. 32 * 33 * In accordance with Section 7(b) of the GNU General Public License version 3, 34 * these Appropriate Legal Notices must retain the display of the "Powered by 35 * SugarCRM" logo. If the display of the logo is not reasonably feasible for 36 * technical reasons, the Appropriate Legal Notices must display the words 37 * "Powered by SugarCRM". 38 */ 39 40 41 42 $dictionary['project_task_project_tasks'] = array( 43 'table' => 'project_task_project_tasks', 44 'fields' => array( 45 'id' => array( 46 'name' => 'id', 47 'vname' => 'LBL_ID', 48 'required' => true, 49 'type' => 'id', 50 ), 51 'project_task_id' => array( 52 'name' => 'project_task_id', 53 'vname' => 'LBL_PROJECT_TASK_ID', 54 'required' => true, 55 'type' => 'id', 56 ), 57 'predecessor_project_task_id' => array( 58 'name' => 'predecessor_project_task_id', 59 'vname' => 'LBL_PROJECT_TASK_ID', 60 'required' => true, 61 'type' => 'id', 62 ), 63 'deleted' => array( 64 'name' => 'deleted', 65 'vname' => 'LBL_DELETED', 66 'type' => 'bool', 67 'required' => true, 68 'default' => '0', 69 ), 70 ), 71 'indices' => array( 72 array( 73 'name' =>'proj_rel_pk', 74 'type' =>'primary', 75 'fields'=>array('id') 76 ), 77 ), 78 79 'relationships' => array( 80 'project_task_project_tasks' => array( 81 'lhs_module' => 'ProjectTasks2', 82 'lhs_table' => 'project_tasks', 83 'lhs_key' => 'id', 84 'rhs_module' => 'ProjectTasks2', 85 'rhs_table' => 'project_tasks', 86 'rhs_key' => 'id', 87 'relationship_type' => 'many-to-many', 88 'join_table' => 'project_task_project_tasks', 89 'join_key_lhs' => 'project_task_id', 90 'join_key_rhs' => 'predecessor_project_task_id', 91 ), 92 ), 93 ); 94 95 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
|
|
|
|