file_og_gallery_access

Versions
6
file_og_gallery_access($node)

Check groups gallery access.

Code

contributions/fileframework/file.module, line 263

<?php
function file_og_gallery_access($node) {
  return module_exists('file_gallery') && module_exists('og_vocab') ? user_access('view files') && og_is_group_member($node, FALSE) : FALSE;
}
?>