You are here

function hosting_package_permission in Hosting 7.3

Same name and namespace in other branches
  1. 7.4 package/hosting_package.module \hosting_package_permission()

Implements hook_permission().

File

package/hosting_package.module, line 45
Defines package node types

Code

function hosting_package_permission() {
  return array(
    'create package' => array(
      'title' => t('create package'),
    ),
    'view package' => array(
      'title' => t('view package'),
    ),
    'edit package' => array(
      'title' => t('edit package'),
    ),
    'delete package' => array(
      'title' => t('delete package'),
    ),
  );
}