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
  On 3/22/2017 at 8: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.

Expand  

Thank you for this,

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

Posted
  On 3/23/2017 at 5:25 PM, Angel Air said:

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

Expand  

In case you are in need of inspiration

  Reveal hidden contents

Posted
  On 3/22/2017 at 8: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.

Expand  

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 3/31/2017 at 5:35 PM, 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?

Expand  

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

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.

×
×
  • Create New...