You are here

function unique_field_perm in Unique field 6

Same name and namespace in other branches
  1. 5 unique_field.module \unique_field_perm()

Implementation of hook_perm().

File

./unique_field.module, line 53
Provides content validation requirement that a node's title, author, language, taxonomy terms, or CCK fields are unique.

Code

function unique_field_perm() {
  return array(
    UNIQUE_FIELD_PERM_ADMIN,
    UNIQUE_FIELD_PERM_BYPASS,
  );
}