Hi, Im trying to create a seperate page where a pilot can click on a world map on hotspots for the airports so it brings up a page with all the charts for that airport.
Here is the process as i understand it.
Create a module “Charts”
<?php
class charts extends CodonModule
{
public function index()
{
Template::Show('charts.tpl');
}
}
?>
I have created my charts.tpl which is in my skins folder
and obviously each airport needs its own template where i will display the chart links.
When i do this i get the module “charts” does not exists.error
Is there anything else i need to change.
I have checked the file exists in core/modules/charts and it is there.
Thanks in advance
Alex