Merge pull request #15362 from yashodha/edit
[civicrm-core.git] / CRM / Core / DAO / Tag.php
index b296d405ed8664a303b6add319ee2b786c85f207..ddf825998eaaa9b959293d4db2e6a5e735556f41 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Generated from xml/schema/CRM/Core/Tag.xml
  * DO NOT EDIT.  Generated by CRM_Core_CodeGen
- * (GenCodeChecksum:e66cd3973c4f223dd201904b3c59b233)
+ * (GenCodeChecksum:9f26fdcff51afe66519e1c06518dccca)
  */
 
 /**
@@ -19,19 +19,19 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
    *
    * @var string
    */
-  static $_tableName = 'civicrm_tag';
+  public static $_tableName = 'civicrm_tag';
 
   /**
    * Should CiviCRM log any modifications to this table in the civicrm_log table.
    *
    * @var bool
    */
-  static $_log = TRUE;
+  public static $_log = TRUE;
 
   /**
    * Tag ID
    *
-   * @var int unsigned
+   * @var int
    */
   public $id;
 
@@ -52,24 +52,24 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
   /**
    * Optional parent id for this tag.
    *
-   * @var int unsigned
+   * @var int
    */
   public $parent_id;
 
   /**
    * Is this tag selectable / displayed
    *
-   * @var boolean
+   * @var bool
    */
   public $is_selectable;
 
   /**
-   * @var boolean
+   * @var bool
    */
   public $is_reserved;
 
   /**
-   * @var boolean
+   * @var bool
    */
   public $is_tagset;
 
@@ -81,7 +81,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
   /**
    * FK to civicrm_contact, who created this tag
    *
-   * @var int unsigned
+   * @var int
    */
   public $created_id;
 
@@ -115,7 +115,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
    */
   public static function getReferenceColumns() {
     if (!isset(Civi::$statics[__CLASS__]['links'])) {
-      Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
+      Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
       Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'parent_id', 'civicrm_tag', 'id');
       Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'created_id', 'civicrm_contact', 'id');
       CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
@@ -137,6 +137,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
           'title' => ts('Tag ID'),
           'description' => ts('Tag ID'),
           'required' => TRUE,
+          'where' => 'civicrm_tag.id',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
           'bao' => 'CRM_Core_BAO_Tag',
@@ -150,6 +151,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
           'required' => TRUE,
           'maxlength' => 64,
           'size' => CRM_Utils_Type::BIG,
+          'where' => 'civicrm_tag.name',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
           'bao' => 'CRM_Core_BAO_Tag',
@@ -162,6 +164,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
           'description' => ts('Optional verbose description of the tag.'),
           'maxlength' => 255,
           'size' => CRM_Utils_Type::HUGE,
+          'where' => 'civicrm_tag.description',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
           'bao' => 'CRM_Core_BAO_Tag',
@@ -172,6 +175,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
           'type' => CRM_Utils_Type::T_INT,
           'title' => ts('Parent Tag'),
           'description' => ts('Optional parent id for this tag.'),
+          'where' => 'civicrm_tag.parent_id',
           'default' => 'NULL',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
@@ -184,6 +188,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
           'type' => CRM_Utils_Type::T_BOOLEAN,
           'title' => ts('Display Tag?'),
           'description' => ts('Is this tag selectable / displayed'),
+          'where' => 'civicrm_tag.is_selectable',
           'default' => '1',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
@@ -194,6 +199,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
           'name' => 'is_reserved',
           'type' => CRM_Utils_Type::T_BOOLEAN,
           'title' => ts('Reserved'),
+          'where' => 'civicrm_tag.is_reserved',
           'default' => '0',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
@@ -204,6 +210,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
           'name' => 'is_tagset',
           'type' => CRM_Utils_Type::T_BOOLEAN,
           'title' => ts('Tagset'),
+          'where' => 'civicrm_tag.is_tagset',
           'default' => '0',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
@@ -216,24 +223,27 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
           'title' => ts('Used For'),
           'maxlength' => 64,
           'size' => CRM_Utils_Type::BIG,
+          'where' => 'civicrm_tag.used_for',
           'default' => 'NULL',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
           'bao' => 'CRM_Core_BAO_Tag',
           'localizable' => 0,
+          'serialize' => self::SERIALIZE_COMMA,
           'html' => [
             'type' => 'Select',
           ],
           'pseudoconstant' => [
             'optionGroupName' => 'tag_used_for',
             'optionEditPath' => 'civicrm/admin/options/tag_used_for',
-          ]
+          ],
         ],
         'created_id' => [
           'name' => 'created_id',
           'type' => CRM_Utils_Type::T_INT,
           'title' => ts('Tag Created By'),
           'description' => ts('FK to civicrm_contact, who created this tag'),
+          'where' => 'civicrm_tag.created_id',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
           'bao' => 'CRM_Core_BAO_Tag',
@@ -247,6 +257,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
           'description' => ts('Hex color value e.g. #ffffff'),
           'maxlength' => 255,
           'size' => CRM_Utils_Type::HUGE,
+          'where' => 'civicrm_tag.color',
           'default' => 'NULL',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
@@ -258,6 +269,7 @@ class CRM_Core_DAO_Tag extends CRM_Core_DAO {
           'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
           'title' => ts('Tag Created Date'),
           'description' => ts('Date and time that tag was created.'),
+          'where' => 'civicrm_tag.created_date',
           'table_name' => 'civicrm_tag',
           'entity' => 'Tag',
           'bao' => 'CRM_Core_BAO_Tag',