mariusbutuc

MariusButuc

Apr 6th, 2010
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1.  Change the "Add tags" behaviour :
  2.  - only admins should be able to create new tags,
  3.  - the other users should only be able to add tags from the existing list
  4. #if(!$hasAdmin && !$xwiki.tag.getAllTags().contains($tag))
  5.   #set($result = 'NOT_ALLOWED')
  6. #else
  7.   #set($result = $xwiki.tag.addTagsToDocument($tag, $doc.fullName))
  8. #end
  9.   ...
Add Comment
Please, Sign In to add comment