__table = 'civicrm_acl'; parent::__construct(); } /** * Returns foreign keys and entity references * * @return array * [CRM_Core_Reference_Interface] */ static function getReferenceColumns() { if (!self::$_links) { self::$_links = static ::createReferenceColumns(__CLASS__); self::$_links[] = new CRM_Core_Reference_Dynamic(self::getTableName() , 'entity_id', NULL, 'id', 'entity_table'); } return self::$_links; } /** * Returns all the column names of this table * * @return array */ static function &fields() { if (!(self::$_fields)) { self::$_fields = array( 'id' => array( 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('ACL ID') , 'description' => 'Unique table ID', 'required' => true, ) , 'name' => array( 'name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('ACL Name') , 'description' => 'ACL Name.', 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, 'html' => array( 'type' => 'Text', ) , ) , 'deny' => array( 'name' => 'deny', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Deny ACL?') , 'description' => 'Is this ACL entry Allow (0) or Deny (1) ?', 'required' => true, 'html' => array( 'type' => 'Radio', ) , ) , 'entity_table' => array( 'name' => 'entity_table', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('ACL Entity') , 'description' => 'Table of the object possessing this ACL entry (Contact, Group, or ACL Group)', 'required' => true, 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, ) , 'entity_id' => array( 'name' => 'entity_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Entity ID') , 'description' => 'ID of the object possessing this ACL', ) , 'operation' => array( 'name' => 'operation', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('ACL Operation') , 'description' => 'What operation does this ACL entry control?', 'required' => true, 'maxlength' => 8, 'size' => CRM_Utils_Type::EIGHT, 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'callback' => 'CRM_ACL_BAO_ACL::operation', ) ) , 'object_table' => array( 'name' => 'object_table', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('ACL Object') , 'description' => 'The table of the object controlled by this ACL entry', 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, ) , 'object_id' => array( 'name' => 'object_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('ACL Object ID') , 'description' => 'The ID of the object controlled by this ACL entry', ) , 'acl_table' => array( 'name' => 'acl_table', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('ACL Table') , 'description' => 'If this is a grant/revoke entry, what table are we granting?', 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, ) , 'acl_id' => array( 'name' => 'acl_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('ACL Group ID') , 'description' => 'ID of the ACL or ACL group being granted/revoked', ) , 'is_active' => array( 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('ACL Is Active?') , 'description' => 'Is this property active?', 'html' => array( 'type' => 'Checkbox', ) , ) , ); } return self::$_fields; } /** * Returns an array containing, for each field, the arary key used for that * field in self::$_fields. * * @return array */ static function &fieldKeys() { if (!(self::$_fieldKeys)) { self::$_fieldKeys = array( 'id' => 'id', 'name' => 'name', 'deny' => 'deny', 'entity_table' => 'entity_table', 'entity_id' => 'entity_id', 'operation' => 'operation', 'object_table' => 'object_table', 'object_id' => 'object_id', 'acl_table' => 'acl_table', 'acl_id' => 'acl_id', 'is_active' => 'is_active', ); } return self::$_fieldKeys; } /** * Returns the names of this table * * @return string */ static function getTableName() { return 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) { if (!(self::$_import)) { self::$_import = array(); $fields = self::fields(); foreach($fields as $name => $field) { if (CRM_Utils_Array::value('import', $field)) { if ($prefix) { self::$_import['acl'] = & $fields[$name]; } else { self::$_import[$name] = & $fields[$name]; } } } } return self::$_import; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ static function &export($prefix = false) { if (!(self::$_export)) { self::$_export = array(); $fields = self::fields(); foreach($fields as $name => $field) { if (CRM_Utils_Array::value('export', $field)) { if ($prefix) { self::$_export['acl'] = & $fields[$name]; } else { self::$_export[$name] = & $fields[$name]; } } } } return self::$_export; } }