I followed the instructions in the tutorial by creating a module called "Test" which I then installed. Then I edited the TestCommon_0.php file so it looks like this:
<?php
defined("_VALID_ACCESS") || die('Direct access forbidden');
class TestCommon {
public static function menu() {
return array('Test'=>array('__submenu__'=>1,'Hello World'=>array()));
}
}
?>
But nothing appears in the menu... this seems pretty simple, any idea what I'm doing wrong?
Thanks in advance!