function farm_fields_farm_access_perms in farmOS 7
Implements hook_farm_access_perms().
File
- modules/
farm/ farm_fields/ farm_fields.module, line 26
Code
function farm_fields_farm_access_perms($role) {
$perms = array();
// Grant access to the farm input filter.
$perms[] = 'use text format farm_format';
return $perms;
}