First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
411
sites/all/modules/civicrm/CRM/Member/DAO/MembershipStatus.php
Normal file
411
sites/all/modules/civicrm/CRM/Member/DAO/MembershipStatus.php
Normal file
|
@ -0,0 +1,411 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM 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 and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
/**
|
||||
* @package CRM
|
||||
* @copyright CiviCRM LLC (c) 2004-2017
|
||||
*
|
||||
* Generated from xml/schema/CRM/Member/MembershipStatus.xml
|
||||
* DO NOT EDIT. Generated by CRM_Core_CodeGen
|
||||
* (GenCodeChecksum:dfe977e53a6b66703ab4eca3560048e6)
|
||||
*/
|
||||
require_once 'CRM/Core/DAO.php';
|
||||
require_once 'CRM/Utils/Type.php';
|
||||
/**
|
||||
* CRM_Member_DAO_MembershipStatus constructor.
|
||||
*/
|
||||
class CRM_Member_DAO_MembershipStatus extends CRM_Core_DAO {
|
||||
/**
|
||||
* Static instance to hold the table name.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
static $_tableName = 'civicrm_membership_status';
|
||||
/**
|
||||
* Should CiviCRM log any modifications to this table in the civicrm_log table.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
static $_log = true;
|
||||
/**
|
||||
* Membership Id
|
||||
*
|
||||
* @var int unsigned
|
||||
*/
|
||||
public $id;
|
||||
/**
|
||||
* Name for Membership Status
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $name;
|
||||
/**
|
||||
* Label for Membership Status
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $label;
|
||||
/**
|
||||
* Event when this status starts.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $start_event;
|
||||
/**
|
||||
* Unit used for adjusting from start_event.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $start_event_adjust_unit;
|
||||
/**
|
||||
* Status range begins this many units from start_event.
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $start_event_adjust_interval;
|
||||
/**
|
||||
* Event after which this status ends.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $end_event;
|
||||
/**
|
||||
* Unit used for adjusting from the ending event.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $end_event_adjust_unit;
|
||||
/**
|
||||
* Status range ends this many units from end_event.
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $end_event_adjust_interval;
|
||||
/**
|
||||
* Does this status aggregate to current members (e.g. New, Renewed, Grace might all be TRUE... while Unrenewed, Lapsed, Inactive would be FALSE).
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
public $is_current_member;
|
||||
/**
|
||||
* Is this status for admin/manual assignment only.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
public $is_admin;
|
||||
/**
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $weight;
|
||||
/**
|
||||
* Assign this status to a membership record if no other status match is found.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
public $is_default;
|
||||
/**
|
||||
* Is this membership_status enabled.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
public $is_active;
|
||||
/**
|
||||
* Is this membership_status reserved.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
public $is_reserved;
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
function __construct() {
|
||||
$this->__table = 'civicrm_membership_status';
|
||||
parent::__construct();
|
||||
}
|
||||
/**
|
||||
* Returns all the column names of this table
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
static function &fields() {
|
||||
if (!isset(Civi::$statics[__CLASS__]['fields'])) {
|
||||
Civi::$statics[__CLASS__]['fields'] = array(
|
||||
'id' => array(
|
||||
'name' => 'id',
|
||||
'type' => CRM_Utils_Type::T_INT,
|
||||
'title' => ts('Membership Status ID') ,
|
||||
'description' => 'Membership Id',
|
||||
'required' => true,
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'membership_status' => array(
|
||||
'name' => 'name',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Membership Status') ,
|
||||
'description' => 'Name for Membership Status',
|
||||
'maxlength' => 128,
|
||||
'size' => CRM_Utils_Type::HUGE,
|
||||
'import' => true,
|
||||
'where' => 'civicrm_membership_status.name',
|
||||
'headerPattern' => '',
|
||||
'dataPattern' => '',
|
||||
'export' => true,
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'label' => array(
|
||||
'name' => 'label',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Label') ,
|
||||
'description' => 'Label for Membership Status',
|
||||
'maxlength' => 128,
|
||||
'size' => CRM_Utils_Type::HUGE,
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 1,
|
||||
) ,
|
||||
'start_event' => array(
|
||||
'name' => 'start_event',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Start Event') ,
|
||||
'description' => 'Event when this status starts.',
|
||||
'maxlength' => 12,
|
||||
'size' => CRM_Utils_Type::TWELVE,
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Select',
|
||||
) ,
|
||||
'pseudoconstant' => array(
|
||||
'callback' => 'CRM_Core_SelectValues::eventDate',
|
||||
)
|
||||
) ,
|
||||
'start_event_adjust_unit' => array(
|
||||
'name' => 'start_event_adjust_unit',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Start Event Adjust Unit') ,
|
||||
'description' => 'Unit used for adjusting from start_event.',
|
||||
'maxlength' => 8,
|
||||
'size' => CRM_Utils_Type::EIGHT,
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Select',
|
||||
) ,
|
||||
'pseudoconstant' => array(
|
||||
'callback' => 'CRM_Core_SelectValues::unitList',
|
||||
)
|
||||
) ,
|
||||
'start_event_adjust_interval' => array(
|
||||
'name' => 'start_event_adjust_interval',
|
||||
'type' => CRM_Utils_Type::T_INT,
|
||||
'title' => ts('Start Event Adjust Interval') ,
|
||||
'description' => 'Status range begins this many units from start_event.',
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'end_event' => array(
|
||||
'name' => 'end_event',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('End Event') ,
|
||||
'description' => 'Event after which this status ends.',
|
||||
'maxlength' => 12,
|
||||
'size' => CRM_Utils_Type::TWELVE,
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Select',
|
||||
) ,
|
||||
'pseudoconstant' => array(
|
||||
'callback' => 'CRM_Core_SelectValues::eventDate',
|
||||
)
|
||||
) ,
|
||||
'end_event_adjust_unit' => array(
|
||||
'name' => 'end_event_adjust_unit',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('End Event Adjust Unit') ,
|
||||
'description' => 'Unit used for adjusting from the ending event.',
|
||||
'maxlength' => 8,
|
||||
'size' => CRM_Utils_Type::EIGHT,
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Select',
|
||||
) ,
|
||||
'pseudoconstant' => array(
|
||||
'callback' => 'CRM_Core_SelectValues::unitList',
|
||||
)
|
||||
) ,
|
||||
'end_event_adjust_interval' => array(
|
||||
'name' => 'end_event_adjust_interval',
|
||||
'type' => CRM_Utils_Type::T_INT,
|
||||
'title' => ts('End Event Adjust Interval') ,
|
||||
'description' => 'Status range ends this many units from end_event.',
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'is_current_member' => array(
|
||||
'name' => 'is_current_member',
|
||||
'type' => CRM_Utils_Type::T_BOOLEAN,
|
||||
'title' => ts('Current Membership?') ,
|
||||
'description' => 'Does this status aggregate to current members (e.g. New, Renewed, Grace might all be TRUE... while Unrenewed, Lapsed, Inactive would be FALSE).',
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'is_admin' => array(
|
||||
'name' => 'is_admin',
|
||||
'type' => CRM_Utils_Type::T_BOOLEAN,
|
||||
'title' => ts('Admin Assigned Only?') ,
|
||||
'description' => 'Is this status for admin/manual assignment only.',
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'weight' => array(
|
||||
'name' => 'weight',
|
||||
'type' => CRM_Utils_Type::T_INT,
|
||||
'title' => ts('Order') ,
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'is_default' => array(
|
||||
'name' => 'is_default',
|
||||
'type' => CRM_Utils_Type::T_BOOLEAN,
|
||||
'title' => ts('Default Status?') ,
|
||||
'description' => 'Assign this status to a membership record if no other status match is found.',
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'is_active' => array(
|
||||
'name' => 'is_active',
|
||||
'type' => CRM_Utils_Type::T_BOOLEAN,
|
||||
'title' => ts('Is Active') ,
|
||||
'description' => 'Is this membership_status enabled.',
|
||||
'default' => '1',
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'is_reserved' => array(
|
||||
'name' => 'is_reserved',
|
||||
'type' => CRM_Utils_Type::T_BOOLEAN,
|
||||
'title' => ts('Is Reserved') ,
|
||||
'description' => 'Is this membership_status reserved.',
|
||||
'table_name' => 'civicrm_membership_status',
|
||||
'entity' => 'MembershipStatus',
|
||||
'bao' => 'CRM_Member_BAO_MembershipStatus',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
);
|
||||
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 CRM_Core_DAO::getLocaleTableName(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__, 'membership_status', $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__, 'membership_status', $prefix, array());
|
||||
return $r;
|
||||
}
|
||||
/**
|
||||
* Returns the list of indices
|
||||
*/
|
||||
public static function indices($localize = TRUE) {
|
||||
$indices = array();
|
||||
return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue