Hi,
I'm completely brand new to PHP, since I'm learning Drupal. I tried to create a module, which is simple as can be, and get this error:
Parse error: syntax error, unexpected T_IF in /home/info/scottandersonyoga/www/ubercart/sites/all/modules/my_tweaks/my_tweaks.module on line 3
The actual code is as follow:
<?php
my_tweaks_signup_suppress($node)
if ($node -> type == 'event') {
return TRUE;
}
Help?