Jump to content

painel lateral


Fagotte

Recommended Posts

good friend I will not know anything about codes but I will try and there is also another little problem when I go the route book she says that the route did not pass.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>

<title><?php echo $page_title; ?></title>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/surrealv1/css/style.css" />

<link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/surrealv1/css/blue.css" />

<link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/surrealv1/css/ddsmoothmenu.css" />

<!--[if IE 6]><link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/surrealv1/css/ie6.css" /><![endif]-->

<!--[if IE 7]><link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/surrealv1/css/ie7.css" /><![endif]-->

<?php echo $page_htmlhead; ?>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>

<script type="text/javascript" src="<?php echo SITE_URL?>/lib/skins/surrealv1/js/pikachoose.js"></script>

<script type="text/javascript" src="<?php echo SITE_URL?>/lib/skins/surrealv1/js/ddsmoothmenu.js">

/***********************************************

* Smooth Navigational Menu- © Dynamic Drive DHTML code library (www.dynamicdrive.com)

* This notice MUST stay intact for legal use

* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code

***********************************************/

</script>

<script type="text/javascript">

<!--

ddsmoothmenu.init({

mainmenuid: "navigation", //menu DIV id

orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"

classname: 'menu', //class added to menu's outer DIV

//customtheme: ["#1c5a80", "#18374a"],

contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]

})

$(document).ready(function(){

$("#pikame").PikaChoose();

});

-->

</script>

</head>

<body>

<?php echo $page_htmlreq; ?>

<div id="titleheader_bg"><a href="/index.php" title="Home"><img src="<?php echo SITE_URL?>/lib/skins/surrealv1/images/titleheader_title.gif" /></a></div>

<div id="gradient"><div class="gradient_highlight"></div></div>

<div id="container">

<div id="navigation" class="menu">

<ul>

<?php Template::Show('core_navigation.tpl'); ?>

<li><a href="#">Sample Dropdown</a>

<ul>

<li><a href="#">Remove This</a></li>

<li><a href="#">Or Use It</a></li>

<li><a href="#">In layout.tpl</a></li>

</ul>

</li>

</ul>

</div>

<!-- Slider -->

<div id="display">

<ul id="pikame">

<li><img src="<?php echo SITE_URL?>/lib/skins/surrealv1/images/display/thumbs/slide1.jpg" ref="<?php echo SITE_URL?>/lib/skins/surrealv1/images/display/slide1.jpg" alt="Slide1" /><span>Boeing 767<br /><small>Landing At Saint Martin</small></span></li>

<li><img src="<?php echo SITE_URL?>/lib/skins/surrealv1/images/display/thumbs/slide2.jpg" ref="<?php echo SITE_URL?>/lib/skins/surrealv1/images/display/slide2.jpg" alt="Slide2" /><span>Cessna 182<br /><small>In the Mountains Somewhere</small></span></li>

</ul>

</div>

<!-- End Slider -->

<div id="content_container">

<div id="content">

<?php echo $page_content; ?>

</div>

<div id="sidebar">

<div class="sidebar_section">

<div class="sidebar_title">

<h4>Latest PiReps</h4>

</div>

<?php MainController::Run('PIREPS', 'RecentFrontPage', 5); ?>

</div>

<div class="sidebar_section">

<div class="sidebar_title">

<h4>Latest Pilots</h4>

<small>Please help us welcome them</small>

</div>

<?php MainController::Run('Pilots', 'RecentFrontPage', 5); ?>

</div>

<div class="sidebar_section" style="border-bottom: 0;">

<div class="sidebar_title">

<?php

if(Auth::LoggedIn() == false)

{

?>

<form name="loginform" action="<?php echo url('/login'); ?>" method="post">

Sign-in with your pilot id or email, or <a href="<?php echo url('/registration'); ?>">register</a><br />

<input type="text" name="email" value="" onClick="this.value=''" />

<input type="password" name="password" value="" />

<input type="hidden" name="remember" value="on" />

<input type="hidden" name="redir" value="index.php/profile" />

<input type="hidden" name="action" value="login" />

<input type="submit" name="submit" value="Log In" />

</form>

<?php

}

else

{

$pilotid = PilotData::GetPilotCode(Auth::$userinfo->code, Auth::$userinfo->pilotid);

?>

<img align="left" height="50px" width="50px" style="margin-right: 10px;"

src="<?php echo PilotData::getPilotAvatar($pilotid);?>" />

<strong>Pilot ID: </strong> <?php echo $pilotid ; ?>

<strong>Rank: </strong><?php echo Auth::$userinfo->rank;?><br />

<strong>Total Flights: </strong><?php echo Auth::$userinfo->totalflights?>, <strong>Total Hours: </strong><?php echo Auth::$userinfo->totalhours;?>

<br />

<a href="<?php echo url('/pireps/new');?>">File a New PIREP</a> |

<a href="<?php echo url('/schedules/bids');?>">View My Bids</a> |

<a href="<?php echo url('/profile/');?>">View Pilot Center</a>

<?php

}

?>

</div>

</div>

</div>

<div class="spacer"></div>

</div>

</div>

<div id="footer">

copyright © 2007 - <?php echo date('Y') ?> - <?php echo SITE_NAME; ?> | <a href="http://www.phpvms.net" target="_blank">powered by phpVMS</a> | Template repackaged by <a href="http://www.la92.com" target="_blank">LA92</a> | <a href="#top">go to top</a>

</div>

</body>

</html>

good very thanks for the help ...

Link to comment
Share on other sites

BOM NÃO FALO INGLES RSRS SOU DO BRASIL E BOM É COMO POSSO DIZER NÃO SEI QUASE NADA. ESSA É MINHA PRIMEIRA (VA) E AINDA ESTOU MEIO CONFUSO SE PUDESSEM AJUDAR. TENHO ALGUNS PROBLEMAS QUANDO VOU ADICIONAR A ROTA ELA DIZ QUE A ROTA NÃO PASSOU NO MOMENTO ESTOU OPERANDO SÓ COM REPORTES MANUAIS. E QUERIA SABER COMO MUDAR A COR DO FUNDO DE ALGUNS PAINÉIS.OBRIGADO PELA RESPOSTA AMIGO.

Link to comment
Share on other sites

DO NOT TALK GOOD ENGLISH RSRs AM FROM BRAZIL AND HOW GOOD IS NOT KNOW CAN SAY ALMOST ANYTHING. THIS IS MY FIRST (VA) MIDDLE AND AM STILL CONFUSED IF COULD HELP. I HAVE SOME PROBLEMS WHEN WILL ADD IT SAYS ROUTE ROUTE NOT PASSED AT THE MOMENT I'M ONLY WITH REPORTS OPERATING MANUAL. AND WANTED TO KNOW HOW TO CHANGE THE COLOR OF SOME OF THE FUND FOR RESPONSE PAINÉIS.OBRIGADO FRIEND.

sorry if I missed something but I really not speak English very well

Link to comment
Share on other sites

BOM NÃO FALO INGLES RSRS SOU DO BRASIL E BOM É COMO POSSO DIZER NÃO SEI QUASE NADA. ESSA É MINHA PRIMEIRA (VA) E AINDA ESTOU MEIO CONFUSO SE PUDESSEM AJUDAR. TENHO ALGUNS PROBLEMAS QUANDO VOU ADICIONAR A ROTA ELA DIZ QUE A ROTA NÃO PASSOU NO MOMENTO ESTOU OPERANDO SÓ COM REPORTES MANUAIS. E QUERIA SABER COMO MUDAR A COR DO FUNDO DE ALGUNS PAINÉIS.OBRIGADO PELA RESPOSTA AMIGO.

Eu já usei muita esse skin, e editei ela tirando o painel lateral. É só fazer o download dos novos arquivos e por no diretório do seu site substituindo as existentes. :)

Download

Link to comment
Share on other sites

I think I found the problem to add routes

if($routeid == '')

{

echo 'No route passed';

return;

}

// See if this is a valid route

$route = SchedulesData::findSchedules(array('s.id' => $routeid));

if(!is_array($route) && !isset($route[0]))

{

echo 'Invalid Route';

return;

}

Link to comment
Share on other sites

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...