You are here

function workbench_access_configuration_needed_message in Workbench Access 7

Return the text directing admins to Workbench Access configuration.

6 calls to workbench_access_configuration_needed_message()
workbench_access_default_form_element in ./workbench_access.module
Find and alter the native form element for node editing.
workbench_access_editors in ./workbench_access.admin.inc
Display the editors for a section.
workbench_access_enable in ./workbench_access.install
Implements hook_enable().
workbench_access_node_form_element in ./workbench_access.module
Provides a module-specific form for access control.
workbench_access_requirements in ./workbench_access.install
Implements hook_requirements() to check if workbench_access is configured.

... See full list

File

./workbench_access.module, line 1649
Workbench Access module file.

Code

function workbench_access_configuration_needed_message() {
  return t('You must <a href="@settings">configure Workbench Access settings</a> before editorial access control will be enforced.', array(
    '@settings' => url('admin/config/workbench/access/settings'),
  ));
}