first import 1.3

This commit is contained in:
Bachir Soussi Chiadmi
2013-09-26 15:57:13 +02:00
commit 16ed68abf6
24 changed files with 6141 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
/**
* @file
* Fieldgroup test module.
*/
/**
* Implements hook_field_access().
*/
function field_group_test_field_access($op, $field, $entity_type, $entity, $account) {
// Set access to false for field_no_access.
if ($op == 'view' && $field['field_name'] == 'field_no_access') {
return FALSE;
}
}