SEARCH:
Previous: group Next: module

group.module



A group.module definition assigns security priveleges to a group for a module. This definition is nested inside of the group definition. This has exactly the same effect as a module.group definition.

Example
group group_id:
   # ... group properties assigned here...
   # Here is the group.module definition:
   module module_id:
      permsel: Y/N
      permins: Y/N
      permupd: Y/N
      permdel: Y/N 
      nomenu:  Y/N

Any privelege granted within a group.module definition will apply to all tables in the named module. These can be overridden by direct assignments at the table level using table.group.

Properties

module module_id. The first line of a group.module definition begins with the keyword 'module', a space, and then the unique module name (module_id) followed by a colon.

description. The friendly description of the group.

permsel. The group's SELECT permission for this module.

permins. The group's INSERT permission for this module.

permupd. The group's UPDATE permission for this module.

permdel. The group's DELETE permission for this module.

Previous: group Next: module