After much tweaking I think I got it…
Comments are welcome and requested.
Thanks
After much tweaking I think I got it…
Comments are welcome and requested.
Thanks
Nice, one question what is the code you used to get the number of schedules you have?
Cheers
Dan C
Very nice man.
Nice, one question what is the code you used to get the number of schedules you have?
Cheers
Dan C
Actually I had to write a new class for that one, as well as for total aircraft and top pilot. In fact I think I had to write a new module for the top pilot…
I can’t remember off the top of my head. Since I am a php newbie there was ALOT of trial and error going on there.
for the number of schedules the class code was:
public static function TotalSchedules()
{
$sql = 'SELECT COUNT(*) AS total
FROM '.TABLE_PREFIX.‘schedules’;
$res = DB::get_row($sql);
return $res->total;
}
and then I just called the class into the sidebar.