CRM-20312 regenerated DAOS with indexes
[civicrm-core.git] / CRM / Financial / DAO / FinancialType.php
index 4a97b94a804f22e8262ee513d2af96a5e185ad33..3be6e3a6cfc9948e1a659842b1146a5422f8c39b 100644 (file)
  *
  * Generated from xml/schema/CRM/Financial/FinancialType.xml
  * DO NOT EDIT.  Generated by CRM_Core_CodeGen
- * (GenCodeChecksum:70310c419681152b59c27bc1b3e013d9)
+ * (GenCodeChecksum:9d787931917508983d68631821eea721)
  */
 require_once 'CRM/Core/DAO.php';
 require_once 'CRM/Utils/Type.php';
+/**
+ * CRM_Financial_DAO_FinancialType constructor.
+ */
 class CRM_Financial_DAO_FinancialType extends CRM_Core_DAO {
   /**
-   * static instance to hold the table name
+   * Static instance to hold the table name.
    *
    * @var string
    */
   static $_tableName = 'civicrm_financial_type';
   /**
-   * 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
    */
@@ -85,9 +87,7 @@ class CRM_Financial_DAO_FinancialType extends CRM_Core_DAO {
    */
   public $is_active;
   /**
-   * class constructor
-   *
-   * @return civicrm_financial_type
+   * Class constructor.
    */
   function __construct() {
     $this->__table = 'civicrm_financial_type';
@@ -107,6 +107,10 @@ class CRM_Financial_DAO_FinancialType extends CRM_Core_DAO {
           'title' => ts('Financial Type ID') ,
           'description' => 'ID of original financial_type so you can search this table by the financial_type.id and then select the relevant version based on the timestamp',
           'required' => true,
+          'table_name' => 'civicrm_financial_type',
+          'entity' => 'FinancialType',
+          'bao' => 'CRM_Financial_BAO_FinancialType',
+          'localizable' => 0,
         ) ,
         'financial_type' => array(
           'name' => 'name',
@@ -121,6 +125,10 @@ class CRM_Financial_DAO_FinancialType extends CRM_Core_DAO {
           'headerPattern' => '/(finan(cial)?)?type/i',
           'dataPattern' => '/donation|member|campaign/i',
           'export' => true,
+          'table_name' => 'civicrm_financial_type',
+          'entity' => 'FinancialType',
+          'bao' => 'CRM_Financial_BAO_FinancialType',
+          'localizable' => 0,
         ) ,
         'description' => array(
           'name' => 'description',
@@ -129,6 +137,10 @@ class CRM_Financial_DAO_FinancialType extends CRM_Core_DAO {
           'description' => 'Financial Type Description.',
           'maxlength' => 255,
           'size' => CRM_Utils_Type::HUGE,
+          'table_name' => 'civicrm_financial_type',
+          'entity' => 'FinancialType',
+          'bao' => 'CRM_Financial_BAO_FinancialType',
+          'localizable' => 0,
         ) ,
         'is_deductible' => array(
           'name' => 'is_deductible',
@@ -136,18 +148,30 @@ class CRM_Financial_DAO_FinancialType extends CRM_Core_DAO {
           'title' => ts('Is Tax Deductible?') ,
           'description' => 'Is this financial type tax-deductible? If true, contributions of this type may be fully OR partially deductible - non-deductible amount is stored in the Contribution record.',
           'default' => '1',
+          'table_name' => 'civicrm_financial_type',
+          'entity' => 'FinancialType',
+          'bao' => 'CRM_Financial_BAO_FinancialType',
+          'localizable' => 0,
         ) ,
         'is_reserved' => array(
           'name' => 'is_reserved',
           'type' => CRM_Utils_Type::T_BOOLEAN,
           'title' => ts('Financial Type is Reserved?') ,
           'description' => 'Is this a predefined system object?',
+          'table_name' => 'civicrm_financial_type',
+          'entity' => 'FinancialType',
+          'bao' => 'CRM_Financial_BAO_FinancialType',
+          'localizable' => 0,
         ) ,
         'is_active' => array(
           'name' => 'is_active',
           'type' => CRM_Utils_Type::T_BOOLEAN,
           'title' => ts('Financial Type Is Active?') ,
           'description' => 'Is this property active?',
+          'table_name' => 'civicrm_financial_type',
+          'entity' => 'FinancialType',
+          'bao' => 'CRM_Financial_BAO_FinancialType',
+          'localizable' => 0,
         ) ,
       );
       CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
@@ -204,4 +228,21 @@ class CRM_Financial_DAO_FinancialType extends CRM_Core_DAO {
     $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'financial_type', $prefix, array());
     return $r;
   }
+  /**
+   * Returns the list of indices
+   */
+  public static function indices($localize = TRUE) {
+    $indices = array(
+      'UI_id' => array(
+        'name' => 'UI_id',
+        'field' => array(
+          0 => 'id',
+        ) ,
+        'localizable' => false,
+        'unique' => true,
+        'sig' => 'civicrm_financial_type::1::id',
+      ) ,
+    );
+    return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
+  }
 }