Пример #1
0
 /**
  * returns all the column names of this table
  *
  * @access public
  * @return array
  */
 function &fields()
 {
     if (!self::$_fields) {
         self::$_fields = array('id' => array('name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'required' => true), 'name' => array('name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('ACL Name'), 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG), 'deny' => array('name' => 'deny', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Deny'), 'required' => true), 'entity_table' => array('name' => 'entity_table', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Entity Table'), 'required' => true, 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG), 'entity_id' => array('name' => 'entity_id', 'type' => CRM_Utils_Type::T_INT), 'operation' => array('name' => 'operation', 'type' => CRM_Utils_Type::T_ENUM, 'title' => ts('Operation'), 'required' => true, 'enumValues' => 'All,View,Edit,Create,Delete,Grant,Revoke,Search'), 'object_table' => array('name' => 'object_table', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Object Table'), 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG), 'object_id' => array('name' => 'object_id', 'type' => CRM_Utils_Type::T_INT), 'acl_table' => array('name' => 'acl_table', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Acl Table'), 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG), 'acl_id' => array('name' => 'acl_id', 'type' => CRM_Utils_Type::T_INT), 'is_active' => array('name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN));
     }
     return self::$_fields;
 }
Пример #2
0
 /**
  * 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;
 }