Skip to content

Instantly share code, notes, and snippets.

@monishdeb
Created April 5, 2017 10:41
Show Gist options
  • Save monishdeb/8fd3eb1f3d91b2195f2ba02039074144 to your computer and use it in GitHub Desktop.
Save monishdeb/8fd3eb1f3d91b2195f2ba02039074144 to your computer and use it in GitHub Desktop.
diff --git a/CRM/Core/DAO/CustomGroup.php b/CRM/Core/DAO/CustomGroup.php
index 7b11b4f..1c45988 100644
--- a/CRM/Core/DAO/CustomGroup.php
+++ b/CRM/Core/DAO/CustomGroup.php
@@ -30,7 +30,7 @@
*
* Generated from xml/schema/CRM/Core/CustomGroup.xml
* DO NOT EDIT. Generated by CRM_Core_CodeGen
- * (GenCodeChecksum:5e44d08da1787dd031e8e4b81c1628a5)
+ * (GenCodeChecksum:5b2dac3266e0184dc4eaa6de10c9d401)
*/
require_once 'CRM/Core/DAO.php';
require_once 'CRM/Utils/Type.php';
@@ -171,6 +171,12 @@ class CRM_Core_DAO_CustomGroup extends CRM_Core_DAO {
*/
public $is_reserved;
/**
+ * Is this property public?
+ *
+ * @var boolean
+ */
+ public $is_public;
+ /**
* Class constructor.
*/
function __construct() {
@@ -434,6 +440,17 @@ class CRM_Core_DAO_CustomGroup extends CRM_Core_DAO {
'bao' => 'CRM_Core_BAO_CustomGroup',
'localizable' => 0,
) ,
+ 'is_public' => array(
+ 'name' => 'is_public',
+ 'type' => CRM_Utils_Type::T_BOOLEAN,
+ 'title' => ts('Custom Group Is Public?') ,
+ 'description' => 'Is this property public?',
+ 'default' => '1',
+ 'table_name' => 'civicrm_custom_group',
+ 'entity' => 'CustomGroup',
+ 'bao' => 'CRM_Core_BAO_CustomGroup',
+ 'localizable' => 0,
+ ) ,
);
CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment