I am a little confused.

does this module restrict

1. who can view the elements on the form
2. restrict who can see a particular field on the node view
3. both

I am using content template. There are fields field_A, field_B that are on the input form.

field_A, field_B are for special admin, Editor, to fill in.

They do not show up on the node teaser or body page and I only want them to show up for Editor admin to fill in.

I have not included them on content template since CT only renders the node.

But the values are still viewable on the input page even after I selected the node and fields on the cck_fields_perm to restrict and given access only to Editor.

Am I missing something?

Chris

ps. formfilter allowed me to filter out fields but not with granuality that cck field perms promises. I just hope I can get it to work this time.

Comments

SocialNicheGuru’s picture

UPDATE 1:
I just added field_B to my content template and used $node->[fieldgroup][field]['#access']

if $node->[fieldgroup][field]['#access']
print $node->[fieldgroup][field]['#value']

just to test if I put in the field woudl it not show up on the form input page (long shot I know) and it did show up

The suggestion of using fieldgroups in contenttemplate came from:

http://drupal.org/node/240189