Guest User

Untitled

a guest
Apr 22nd, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function ssaa_theme1(&$existing, $type, $theme, $path) {
  2. return array(
  3. 'volunteer_node_form' => array(
  4. 'arguments' => array('form' => null),
  5. ),
  6. );
  7. }
  8.  
  9.  
  10. function ssaa_volunteer_node_form($form) {
  11. $out = '';
  12. if (user_is_anonymous()) {
  13. unset($form['field_active']);
  14. }
  15. $out .= drupal_render($form);
  16. return $out;
  17. }
Add Comment
Please, Sign In to add comment