CRM-20312 regenerated DAOS with indexes
[civicrm-core.git] / CRM / Core / DAO / OpenID.php
index a50918c9c76aa6ea544b704ecf5c80d0e3491ceb..06192ee60e52f53eafc5e3e396ae67500e914323 100644 (file)
@@ -30,7 +30,7 @@
  *
  * Generated from xml/schema/CRM/Core/OpenID.xml
  * DO NOT EDIT.  Generated by CRM_Core_CodeGen
- * (GenCodeChecksum:3efcaf2616702a4f0de774761beea36b)
+ * (GenCodeChecksum:cf502fe1aae4bbe85faa570c2c341336)
  */
 require_once 'CRM/Core/DAO.php';
 require_once 'CRM/Utils/Type.php';
@@ -121,12 +121,20 @@ class CRM_Core_DAO_OpenID extends CRM_Core_DAO {
           'title' => ts('Open ID identifier') ,
           'description' => 'Unique OpenID ID',
           'required' => true,
+          'table_name' => 'civicrm_openid',
+          'entity' => 'OpenID',
+          'bao' => 'CRM_Core_BAO_OpenID',
+          'localizable' => 0,
         ) ,
         'contact_id' => array(
           'name' => 'contact_id',
           'type' => CRM_Utils_Type::T_INT,
           'title' => ts('OpenID Contact') ,
           'description' => 'FK to Contact ID',
+          'table_name' => 'civicrm_openid',
+          'entity' => 'OpenID',
+          'bao' => 'CRM_Core_BAO_OpenID',
+          'localizable' => 0,
           'FKClassName' => 'CRM_Contact_DAO_Contact',
         ) ,
         'location_type_id' => array(
@@ -134,6 +142,10 @@ class CRM_Core_DAO_OpenID extends CRM_Core_DAO {
           'type' => CRM_Utils_Type::T_INT,
           'title' => ts('OpenID Location Type') ,
           'description' => 'Which Location does this email belong to.',
+          'table_name' => 'civicrm_openid',
+          'entity' => 'OpenID',
+          'bao' => 'CRM_Core_BAO_OpenID',
+          'localizable' => 0,
         ) ,
         'openid' => array(
           'name' => 'openid',
@@ -148,6 +160,10 @@ class CRM_Core_DAO_OpenID extends CRM_Core_DAO {
           'dataPattern' => '/^[\w\/\:\.]+$/',
           'export' => true,
           'rule' => 'url',
+          'table_name' => 'civicrm_openid',
+          'entity' => 'OpenID',
+          'bao' => 'CRM_Core_BAO_OpenID',
+          'localizable' => 0,
         ) ,
         'allowed_to_login' => array(
           'name' => 'allowed_to_login',
@@ -155,12 +171,20 @@ class CRM_Core_DAO_OpenID extends CRM_Core_DAO {
           'title' => ts('Allowed to login?') ,
           'description' => 'Whether or not this user is allowed to login',
           'required' => true,
+          'table_name' => 'civicrm_openid',
+          'entity' => 'OpenID',
+          'bao' => 'CRM_Core_BAO_OpenID',
+          'localizable' => 0,
         ) ,
         'is_primary' => array(
           'name' => 'is_primary',
           'type' => CRM_Utils_Type::T_BOOLEAN,
           'title' => ts('Is OpenID Primary?') ,
           'description' => 'Is this the primary email for this contact and location.',
+          'table_name' => 'civicrm_openid',
+          'entity' => 'OpenID',
+          'bao' => 'CRM_Core_BAO_OpenID',
+          'localizable' => 0,
         ) ,
       );
       CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
@@ -217,4 +241,29 @@ class CRM_Core_DAO_OpenID extends CRM_Core_DAO {
     $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'openid', $prefix, array());
     return $r;
   }
+  /**
+   * Returns the list of indices
+   */
+  public static function indices($localize = TRUE) {
+    $indices = array(
+      'index_location_type' => array(
+        'name' => 'index_location_type',
+        'field' => array(
+          0 => 'location_type_id',
+        ) ,
+        'localizable' => false,
+        'sig' => 'civicrm_openid::0::location_type_id',
+      ) ,
+      'UI_openid' => array(
+        'name' => 'UI_openid',
+        'field' => array(
+          0 => 'openid',
+        ) ,
+        'localizable' => false,
+        'unique' => true,
+        'sig' => 'civicrm_openid::1::openid',
+      ) ,
+    );
+    return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
+  }
 }