function tft_archive_permission in Taxonomy File Tree 7.2
Implements hook_permission().
1 call to tft_archive_permission()
- tft_og_archive_og_permission in modules/
tft_og_archive/ tft_og_archive.module - Implements hook_og_permission().
File
- modules/
tft_archive/ tft_archive.module, line 59 - Hook implementation and logic.
Code
function tft_archive_permission() {
return array(
TFT_ARCHIVE_PERM__ARCHIVE_TERMS => array(
'title' => t("Archive terms and files"),
),
);
}