X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCase%2FDAO%2FCaseActivity.php;h=20322edd95ddc4861887f0b9bebf7330831cecd1;hb=522a26c97d574d2ce6f88c729fa01998ed203794;hp=78c5803da8b9f565234ffa8e1095bcf71408ba24;hpb=7e6a7f997516cc8cfee3724423181d1f9dc2fa78;p=civicrm-core.git diff --git a/CRM/Case/DAO/CaseActivity.php b/CRM/Case/DAO/CaseActivity.php index 78c5803da8..20322edd95 100644 --- a/CRM/Case/DAO/CaseActivity.php +++ b/CRM/Case/DAO/CaseActivity.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/Case/CaseActivity.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:c03262db2a1c211dcc17de688ec9cc69) + * (GenCodeChecksum:c769e126891a72af7142bb9a7e61a49e) */ require_once 'CRM/Core/DAO.php'; require_once 'CRM/Utils/Type.php'; +/** + * CRM_Case_DAO_CaseActivity constructor. + */ class CRM_Case_DAO_CaseActivity extends CRM_Core_DAO { /** - * static instance to hold the table name + * Static instance to hold the table name. * * @var string */ static $_tableName = 'civicrm_case_activity'; /** - * 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_Case_DAO_CaseActivity extends CRM_Core_DAO { */ public $activity_id; /** - * class constructor - * - * @return civicrm_case_activity + * Class constructor. */ function __construct() { $this->__table = 'civicrm_case_activity'; parent::__construct(); } /** - * Returns foreign keys and entity references + * Returns foreign keys and entity references. * * @return array * [CRM_Core_Reference_Interface] @@ -104,6 +104,9 @@ class CRM_Case_DAO_CaseActivity extends CRM_Core_DAO { 'title' => ts('Case Activity ID') , 'description' => 'Unique case-activity association id', 'required' => true, + 'table_name' => 'civicrm_case_activity', + 'entity' => 'CaseActivity', + 'bao' => 'CRM_Case_DAO_CaseActivity', ) , 'case_id' => array( 'name' => 'case_id', @@ -111,6 +114,9 @@ class CRM_Case_DAO_CaseActivity extends CRM_Core_DAO { 'title' => ts('Case') , 'description' => 'Case ID of case-activity association.', 'required' => true, + 'table_name' => 'civicrm_case_activity', + 'entity' => 'CaseActivity', + 'bao' => 'CRM_Case_DAO_CaseActivity', 'FKClassName' => 'CRM_Case_DAO_Case', ) , 'activity_id' => array( @@ -119,6 +125,9 @@ class CRM_Case_DAO_CaseActivity extends CRM_Core_DAO { 'title' => ts('Activity ID') , 'description' => 'Activity ID of case-activity association.', 'required' => true, + 'table_name' => 'civicrm_case_activity', + 'entity' => 'CaseActivity', + 'bao' => 'CRM_Case_DAO_CaseActivity', 'FKClassName' => 'CRM_Activity_DAO_Activity', ) , );