Jump to content

Recommended Posts

Posted

Can you post your code for the table so we can take a look, but inspecting, it seems that you don't have a source for you image

In other words, this is what you have

<img src="" alt="Captain">

And you need to have this

<img src="have something in this field" alt="Captain">

So there might be something going on, jnascar's post looks correct

  • 2 weeks later...
Posted (edited)

Hello ,  I did every steps on installation guide but I have a problem I have the simspilot phpvms every file is .php''  

Notice: The template file "/home/u147302258/public_html/v2/core/templates/hub/hubview.php" doesn't exist in /home/u147302258/public_html/v2/core/classes/TemplateSet.class.php on line 231 '' 
And I have the same problem on the admin page 
 
Best Regards
Air Corsica Virtuel CEO
Edited by rafaeletras
  • 2 months later...
Posted

Try using this

<?php
$dep_schedules = SchedulesData::findSchedules(array('depicao' => $hubs->icao));
foreach($dep_schedules as $sched) {
	echo $sched->code.$sched->flightnum.' | '.$sched->depicao.' - '.$sched->arricao;
	echo '<br />';
}

$arr_schedules = SchedulesData::findSchedules(array('arricao' => $hubs->icao));
foreach($arr_schedules as $sched) {
	echo $sched->code.$sched->flightnum.' | '.$sched->depicao.' - '.$sched->arricao;
	echo '<br />';
}
?>

You can then format it how you would like in your template.

Posted
21 hours ago, web541 said:

Try using this


<?php
$dep_schedules = SchedulesData::findSchedules(array('depicao' => $hubs->icao));
foreach($dep_schedules as $sched) {
	echo $sched->code.$sched->flightnum.' | '.$sched->depicao.' - '.$sched->arricao;
	echo '<br />';
}

$arr_schedules = SchedulesData::findSchedules(array('arricao' => $hubs->icao));
foreach($arr_schedules as $sched) {
	echo $sched->code.$sched->flightnum.' | '.$sched->depicao.' - '.$sched->arricao;
	echo '<br />';
}
?>

You can then format it how you would like in your template.

Thank you for this,

I have just got to find where to edit the table now :)

Posted
2 hours ago, Angel Air said:

I have just got to find where to edit the table now :)

In case you are in need of inspiration

<h3>Departure Schedules</h3>
<br />
<table>
	<thead>
		<tr>
			<th>Flight Number</th>
			<th>Departure Airport</th>
			<th>Arrival Airport</th>
			<th>Flight Time</th>
		</tr>
	</thead>
	<tbody>
	<?php
	$dep_schedules = SchedulesData::findSchedules(array('depicao' => $hubs->icao));
	foreach($dep_schedules as $sched) {
	?>
		<tr>
			<td><?php echo $sched->code.$sched->flightnum; ?></td>
			<td><?php echo $sched->depicao; ?></td>
			<td><?php echo $sched->arricao; ?></td>
			<td><?php echo $sched->flighttime; ?>hrs</td>
		</tr>
	<?php
	}
	?>
	</tbody>
</table>

<br />
<h3>Arrival Schedules</h3>
<br />
<table>
	<thead>
		<tr>
			<th>Flight Number</th>
			<th>Departure Airport</th>
			<th>Arrival Airport</th>
			<th>Flight Time</th>
		</tr>
	</thead>
	<tbody>
	<?php
	$arr_schedules = SchedulesData::findSchedules(array('arricao' => $hubs->icao));
	foreach($arr_schedules as $sched) {
	?>
		<tr>
			<td><?php echo $sched->code.$sched->flightnum; ?></td>
			<td><?php echo $sched->depicao; ?></td>
			<td><?php echo $sched->arricao; ?></td>
			<td><?php echo $sched->flighttime; ?>hrs</td>
		</tr>
	<?php
	}
	?>
	</tbody>
</table>

Posted
On 3/22/2017 at 4:15 PM, web541 said:

Try using this


<?php
$dep_schedules = SchedulesData::findSchedules(array('depicao' => $hubs->icao));
foreach($dep_schedules as $sched) {
	echo $sched->code.$sched->flightnum.' | '.$sched->depicao.' - '.$sched->arricao;
	echo '<br />';
}

$arr_schedules = SchedulesData::findSchedules(array('arricao' => $hubs->icao));
foreach($arr_schedules as $sched) {
	echo $sched->code.$sched->flightnum.' | '.$sched->depicao.' - '.$sched->arricao;
	echo '<br />';
}
?>

You can then format it how you would like in your template.

Will apologize upfront, however this is rather confusing.  Is this code specifically for use with the Hub Module or is this referencing somewhere else?  

 

Regards,

Nat

Posted
On 1/2/2017 at 4:44 PM, jnascar said:

Try this:

<td align="center"><img src="<?php echo RanksData::getRankImage($pilot->rank);?>" alt="<?php echo $pilot->rank;?>" /></td>

This worked for me.

Posted
2 hours ago, natcret said:

Will apologize upfront, however this is rather confusing.  Is this code specifically for use with the Hub Module or is this referencing somewhere else?

Yes, this is specifically for the hub module.

Check this post

Put that in the hubview.tp/.php file

  • 2 years later...
  • 9 months later...
  • 1 month later...
Posted

I don't quite understand what you mean? phpvms by default puts the roster into hubs and shows them. This module lets you click on a hub and get more detail about the hub. Especially if you have set the roster to not show by hub.

Posted
On 5/29/2020 at 8:40 AM, Strider said:

I have updated this to V1.4. It now uses leaflet maps instead of googlemaps.

im using iCrew so how would i get to display the pilots for a certain hub on the front end site? thanks

Posted

If you are using the premium version of icrew, you will need to talk to icrewsystems about that. If using the freeware version, just look at the default code for the pilots list that ships with phpvms, as it might give you a clue as to how to go about that.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...