You are here

function webform_admin_paths in Webform 7.4

Same name and namespace in other branches
  1. 7.3 webform.module \webform_admin_paths()

Implements hook_admin_paths().

File

./webform.module, line 739
This module provides a simple way to create forms and questionnaires.

Code

function webform_admin_paths() {
  if (variable_get('node_admin_theme')) {
    return array(
      'node/*/webform' => TRUE,
      'node/*/webform/*' => TRUE,
      'node/*/webform-results' => TRUE,
      'node/*/webform-results/*' => TRUE,
      'node/*/submission/*' => TRUE,
    );
  }
}