You are here

function webform_share_perm in Webform share 6

Implements hook_perm(). This is required as we are handling PHP based files on import / export.

File

./webform_share.module, line 13
Module to handle importing and exporting of webforms, as well as adding the ability to set content type defaults.

Code

function webform_share_perm() {
  return array(
    'access webform share functionality',
  );
}