Because it would be a huge mess. To update from one version to another, you’d have to upgrade to every step in between. The builds and everything are automated
Instead of an Avatar, how about a Pilot ID?
phpVMS allowing you to fly to and from any of the airports set, which the admin can choose to either allow it or not to. Also in the CMS, you can choose if to add a new page to the menu, and add or remove links (to other sites/parts of the site).
Could we have weekly and monthly stats based on pilot website login time, flying hours, number of pireps flown, and NM flown by any chance? Preferably in graph or text form…it takes me ages to count up the PIREPS per pilot in the SQL and then enter them into a graph maker. :L
Cheers
If you can give me specifics on what types of stats, sure
A pie chart, similar to the aircraft flown chart, that shows the number of PIREPS flown between pilots in a graph, (the more pireps the larger the chunk out of the graph), the same with the amount of time spent online if possible…the number of time, in minutes spent on the website, put into a pie chart…same goes for the amount of NM flown.
If the timescale for these could be monthly, so one chart per month, it would be great. Hope you know what i mean…lol
Hay Nabeel,
Would it be possible to organise the download order (Category Order) either manually or possibly alphabetically?
I would like to see the schedule and the pireps paginated. If you have a long list it will run down to far. Also the option to show one master roster page aswell.
flyalaska, you can call a full roster from the existing structure in phpvms now… I am currently using it here -> http://www.newenglandvirtual.com/index.php/Operations/roster/ check it out.
flyalaska, you can call a full roster from the existing structure in phpvms now… I am currently using it here -> http://www.newenglandvirtual.com/index.php/Operations/roster/ check it out.
Can you share your code?
Try this - it returns all the lines in the pilots table in an array and you can display what you would like.
<?php MainController::Run('PilotData', 'GetAllPilots', ''); ?>
You missed his point entirely. He means if the list extends beyond a certain row then knock it over to another page so it doesn’t fill the entire height of his site with schedules, pilots etc. Pagination is something of organization and control over your content. You are just calling up all of the pilots…
You missed his point entirely. He means if the list extends beyond a certain row then knock it over to another page so it doesn’t fill the entire height of his site with schedules, pilots etc. Pagination is something of organization and control over your content. You are just calling up all of the pilots…
:
From flyalaska -> Also the option to show one master roster page aswell.
You can implement Javascript pagination using tablesorter:
http://tablesorter.com/docs/example-pager.html
Your site looks good, btw
You can implement Javascript pagination using tablesorter:
http://tablesorter.com/docs/example-pager.html
Do I have to use the tablesorter? Or can I use a php paginator?
Your site looks good, btw
You could use a PHP one but that would require modifications to the Data classes. Javascript would be the easiest to implement
You could use a PHP one but that would require modifications to the Data classes. Javascript would be the easiest to implement
Do you have any links to any Java Script Paginated scripts?
Look at my post above, I posted to tablesorter which will work. I think it’s even included already in phpVMS as default
I think its default to. I found this code in the pirep_viewreport.tpl
<table id="tabledlist" class="tablesorter">
Any idea where the tablesorter is located?
You’ll have to add:
<script type="text/javascript">
$(document).ready(function()
{
$(".tablesorter").tablesorter();
}
);
</script>
To your header.tpl. That will enable the tablesorter for any tables with the class tablesorter.