X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FDedupe%2FDAO%2FException.php;h=d15ce148c663ee9394bf138160d820369500e92f;hb=522a26c97d574d2ce6f88c729fa01998ed203794;hp=9fd79bb135a7425a11e02e7fbde8a664e105de51;hpb=ea1bf656fa46112ea168f6092b2970c5f064c092;p=civicrm-core.git diff --git a/CRM/Dedupe/DAO/Exception.php b/CRM/Dedupe/DAO/Exception.php index 9fd79bb135..d15ce148c6 100644 --- a/CRM/Dedupe/DAO/Exception.php +++ b/CRM/Dedupe/DAO/Exception.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 4.7 | +--------------------------------------------------------------------+ -| Copyright CiviCRM LLC (c) 2004-2016 | +| Copyright CiviCRM LLC (c) 2004-2017 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -26,24 +26,26 @@ */ /** * @package CRM - * @copyright CiviCRM LLC (c) 2004-2016 + * @copyright CiviCRM LLC (c) 2004-2017 * * Generated from xml/schema/CRM/Dedupe/Exception.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:dcb340c85bb19050f0ed6c4c46dc8a4f) + * (GenCodeChecksum:1686b10aca53b1028d00ba93c1275a01) */ require_once 'CRM/Core/DAO.php'; require_once 'CRM/Utils/Type.php'; +/** + * CRM_Dedupe_DAO_Exception constructor. + */ class CRM_Dedupe_DAO_Exception extends CRM_Core_DAO { /** - * static instance to hold the table name + * Static instance to hold the table name. * * @var string */ static $_tableName = 'civicrm_dedupe_exception'; /** - * static value to see if we should log any modifications to - * this table in the civicrm_log table + * Should CiviCRM log any modifications to this table in the civicrm_log table. * * @var boolean */ @@ -67,16 +69,14 @@ class CRM_Dedupe_DAO_Exception extends CRM_Core_DAO { */ public $contact_id2; /** - * class constructor - * - * @return civicrm_dedupe_exception + * Class constructor. */ function __construct() { $this->__table = 'civicrm_dedupe_exception'; parent::__construct(); } /** - * Returns foreign keys and entity references + * Returns foreign keys and entity references. * * @return array * [CRM_Core_Reference_Interface] @@ -104,12 +104,18 @@ class CRM_Dedupe_DAO_Exception extends CRM_Core_DAO { 'title' => ts('Dedupe Exception ID') , 'description' => 'Unique dedupe exception id', 'required' => true, + 'table_name' => 'civicrm_dedupe_exception', + 'entity' => 'Exception', + 'bao' => 'CRM_Dedupe_DAO_Exception', ) , 'contact_id1' => array( 'name' => 'contact_id1', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('First Dupe Contact ID') , 'description' => 'FK to Contact ID', + 'table_name' => 'civicrm_dedupe_exception', + 'entity' => 'Exception', + 'bao' => 'CRM_Dedupe_DAO_Exception', 'FKClassName' => 'CRM_Contact_DAO_Contact', ) , 'contact_id2' => array( @@ -117,6 +123,9 @@ class CRM_Dedupe_DAO_Exception extends CRM_Core_DAO { 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Second Dupe Contact ID') , 'description' => 'FK to Contact ID', + 'table_name' => 'civicrm_dedupe_exception', + 'entity' => 'Exception', + 'bao' => 'CRM_Dedupe_DAO_Exception', 'FKClassName' => 'CRM_Contact_DAO_Contact', ) , );