__table = 'civicrm_pledge'; parent::__construct(); } /** * Returns foreign keys and entity references * * @return array * [CRM_Core_Reference_Interface] */ static function getReferenceColumns() { if (!isset(Civi::$statics[__CLASS__]['links'])) { Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'contact_id', 'civicrm_contact', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'financial_type_id', 'civicrm_financial_type', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'contribution_page_id', 'civicrm_contribution_page', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'campaign_id', 'civicrm_campaign', 'id'); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']); } return Civi::$statics[__CLASS__]['links']; } /** * Returns all the column names of this table * * @return array */ static function &fields() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { Civi::$statics[__CLASS__]['fields'] = array( 'pledge_id' => array( 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Pledge ID') , 'description' => 'Pledge ID', 'required' => true, 'import' => true, 'where' => 'civicrm_pledge.id', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, ) , 'pledge_contact_id' => array( 'name' => 'contact_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Contact ID') , 'description' => 'Foreign key to civicrm_contact.id .', 'required' => true, 'import' => true, 'where' => 'civicrm_pledge.contact_id', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'FKClassName' => 'CRM_Contact_DAO_Contact', 'html' => array( 'type' => 'EntityRef', ) , ) , 'pledge_financial_type_id' => array( 'name' => 'financial_type_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Type') , 'description' => 'FK to Financial Type', 'FKClassName' => 'CRM_Financial_DAO_FinancialType', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'table' => 'civicrm_financial_type', 'keyColumn' => 'id', 'labelColumn' => 'name', ) ) , 'pledge_contribution_page_id' => array( 'name' => 'contribution_page_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Pledge Contribution Page') , 'description' => 'The Contribution Page which triggered this contribution', 'FKClassName' => 'CRM_Contribute_DAO_ContributionPage', ) , 'pledge_amount' => array( 'name' => 'amount', 'type' => CRM_Utils_Type::T_MONEY, 'title' => ts('Total Pledged') , 'description' => 'Total pledged amount.', 'required' => true, 'precision' => array( 20, 2 ) , 'import' => true, 'where' => 'civicrm_pledge.amount', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'html' => array( 'type' => 'Text', ) , ) , 'pledge_original_installment_amount' => array( 'name' => 'original_installment_amount', 'type' => CRM_Utils_Type::T_MONEY, 'title' => ts('Original Installment Amount') , 'description' => 'Original amount for each of the installments.', 'required' => true, 'precision' => array( 20, 2 ) , 'html' => array( 'type' => 'Text', ) , ) , 'currency' => array( 'name' => 'currency', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Pledge Currency') , 'description' => '3 character string, value from config setting or input via user.', 'maxlength' => 3, 'size' => CRM_Utils_Type::FOUR, 'default' => 'NULL', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'table' => 'civicrm_currency', 'keyColumn' => 'name', 'labelColumn' => 'full_name', 'nameColumn' => 'name', ) ) , 'pledge_frequency_unit' => array( 'name' => 'frequency_unit', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Pledge Frequency Unit') , 'description' => 'Time units for recurrence of pledge payments.', 'maxlength' => 8, 'size' => CRM_Utils_Type::EIGHT, 'default' => 'month', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'optionGroupName' => 'recur_frequency_units', 'keyColumn' => 'name', 'optionEditPath' => 'civicrm/admin/options/recur_frequency_units', ) ) , 'pledge_frequency_interval' => array( 'name' => 'frequency_interval', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Pledge Frequency Interval') , 'description' => 'Number of time units for recurrence of pledge payments.', 'required' => true, 'default' => '1', 'html' => array( 'type' => 'Text', ) , ) , 'frequency_day' => array( 'name' => 'frequency_day', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Pledge day') , 'description' => 'Day in the period when the pledge payment is due e.g. 1st of month, 15th etc. Use this to set the scheduled dates for pledge payments.', 'required' => true, 'default' => '3', 'html' => array( 'type' => 'Select', ) , ) , 'installments' => array( 'name' => 'installments', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Pledge Number of Installments') , 'description' => 'Total number of payments to be made.', 'default' => '1', 'html' => array( 'type' => 'Text', ) , ) , 'start_date' => array( 'name' => 'start_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Pledge Start Date') , 'description' => 'The date the first scheduled pledge occurs.', 'required' => true, 'html' => array( 'type' => 'Select Date', ) , ) , 'pledge_create_date' => array( 'name' => 'create_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Pledge Made') , 'description' => 'When this pledge record was created.', 'required' => true, 'import' => true, 'where' => 'civicrm_pledge.create_date', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'html' => array( 'type' => 'Select Date', ) , ) , 'acknowledge_date' => array( 'name' => 'acknowledge_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Pledge Acknowledged') , 'description' => 'When a pledge acknowledgement message was sent to the contributor.', 'html' => array( 'type' => 'Select Date', ) , ) , 'modified_date' => array( 'name' => 'modified_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Pledge Modified Date') , 'description' => 'Last updated date for this pledge record.', ) , 'cancel_date' => array( 'name' => 'cancel_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Pledge Cancelled Date') , 'description' => 'Date this pledge was cancelled by contributor.', 'html' => array( 'type' => 'Select Date', ) , ) , 'end_date' => array( 'name' => 'end_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Pledge End Date') , 'description' => 'Date this pledge finished successfully (total pledge payments equal to or greater than pledged amount).', 'html' => array( 'type' => 'Select Date', ) , ) , 'max_reminders' => array( 'name' => 'max_reminders', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Maximum Number of Reminders') , 'description' => 'The maximum number of payment reminders to send for any given payment.', 'default' => '1', 'html' => array( 'type' => 'Text', ) , ) , 'initial_reminder_day' => array( 'name' => 'initial_reminder_day', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Initial Reminder Day') , 'description' => 'Send initial reminder this many days prior to the payment due date.', 'default' => '5', 'html' => array( 'type' => 'Select', ) , ) , 'additional_reminder_day' => array( 'name' => 'additional_reminder_day', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Additional Reminder Days') , 'description' => 'Send additional reminder this many days after last one sent, up to maximum number of reminders.', 'default' => '5', 'html' => array( 'type' => 'Text', ) , ) , 'pledge_status_id' => array( 'name' => 'status_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Pledge Status Id') , 'description' => 'Implicit foreign key to civicrm_option_values in the contribution_status option group.', 'import' => true, 'where' => 'civicrm_pledge.status_id', 'headerPattern' => '', 'dataPattern' => '', 'export' => false, 'pseudoconstant' => array( 'optionGroupName' => 'contribution_status', 'optionEditPath' => 'civicrm/admin/options/contribution_status', ) ) , 'pledge_is_test' => array( 'name' => 'is_test', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Test') , 'import' => true, 'where' => 'civicrm_pledge.is_test', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'html' => array( 'type' => 'CheckBox', ) , ) , 'pledge_campaign_id' => array( 'name' => 'campaign_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Campaign') , 'description' => 'The campaign for which this pledge has been initiated.', 'import' => true, 'where' => 'civicrm_pledge.campaign_id', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'FKClassName' => 'CRM_Campaign_DAO_Campaign', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'table' => 'civicrm_campaign', 'keyColumn' => 'id', 'labelColumn' => 'title', ) ) , ); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']); } return Civi::$statics[__CLASS__]['fields']; } /** * Return a mapping from field-name to the corresponding key (as used in fields()). * * @return array * Array(string $name => string $uniqueName). */ static function &fieldKeys() { if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) { Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields())); } return Civi::$statics[__CLASS__]['fieldKeys']; } /** * Returns the names of this table * * @return string */ static function getTableName() { return self::$_tableName; } /** * Returns if this table needs to be logged * * @return boolean */ function getLog() { return self::$_log; } /** * Returns the list of fields that can be imported * * @param bool $prefix * * @return array */ static function &import($prefix = false) { $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'pledge', $prefix, array()); return $r; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ static function &export($prefix = false) { $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'pledge', $prefix, array()); return $r; } }