Jump to content

Jeff

Members
  • Posts

    1307
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Jeff

  1. I just started using Google Chrome lately, and discovered that there is a feature that allows other people to access your files (css, images, js, etc.). Is there a way to block Chrome from accessing your website? I am sure this is how some of our latest members have been getting (stealing) all their templates.

  2. That is the only page I have yet to customized. I have a few things in mind to place, and different ways it should look. I might even remove the 2 charts (or place them in custom tables). Other than that, I don't have anything rock solid coded yet, but will soon.

  3. this might also be what you are looking for.

    <script type="text/javascript">
    
     var _gaq = _gaq || [];
     _gaq.push(['_setAccount', 'UA-18106993-2']);
     _gaq.push(['_trackPageview']);
    
     (function() {
       var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
       ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
       var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
     })();
    
    </script>

  4. Open /public_html/admin/templates/pireps_list.tpl

    After this code:

    <?php
    # If there was an error, don't allow the PIREP to go through
    if($pirep->aircraft == '')
    {
    	$error = true;
    }	
    ?>

    Remove all other coding, and paste this in there.

    <table width="100%" style="border: none;">
    <tr>
    <td style="border: none;" align="left">
    
    <button class="{button:{icons:{primary:'ui-icon-arrowthick-1-s'}}}"
    	href="#" onclick="$('#details_dialog_<?php echo $pirep->pirepid;?>').toggle()">Details</button>
    
    <button class="jqModal {button:{icons:{primary:'ui-icon-script'}}}" id="dialog_details"
    	href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/viewlog?pirepid=<?php echo $pirep->pirepid;?>">Log</button>
    
    <button class="jqModal {button:{icons:{primary:'ui-icon-comment'}}}" id="dialog_comments" 
    	href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/viewcomments?pirepid=<?php echo $pirep->pirepid;?>">
    	Comments <span style="font-size: 12px; margin-top: -3px">(<?php echo PIREPData::getCommentCount($pirep->pirepid); ?>)</span></button>
    
    <button class="jqModal {button:{icons:{primary:'ui-icon-note'}}}" id="dialog_addcomment"
    	href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/addcomment?pirepid=<?php echo $pirep->pirepid;?>">
    Add Comment</button>
    </td>
    
    <td style="border: none;" align="right">
    <?php
    # If there was an error, don't allow the PIREP to go through
    if($error == false)
    {
    ?>
    	<button href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/<?php echo $load; ?>?pilotid=<?php echo $pirep->pilotid?>" action="approvepirep"
    	id="<?php echo $pirep->pirepid;?>" class="pirepaction {button:{icons:{primary:'ui-icon-check'}}}">Accept</button>
    
    	<?php
    }
    ?>
    <button id="dialog" class="jqModal {button:{icons:{primary:'ui-icon-closethick'}}}"
    	href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/rejectpirep?pirepid=<?php echo $pirep->pirepid;?>&pilotid=<?php echo $pirep->pilotid; ?>">Reject</button>
    
    <button class="{button:{icons:{primary:'ui-icon-wrench'}}}"
    	onclick="window.location = '<?php echo SITE_URL?>/admin/index.php/pirepadmin/editpirep?pirepid=<?php echo $pirep->pirepid;?>&pilotid=<?php echo $pirep->pilotid?>'">Edit</button>
    
    <button href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/<?php echo $load; ?>?pilotid=<?php echo $pirep->pilotid?>" action="deletepirep"
    	id="<?php echo $pirep->pirepid;?>" class="deleteitem {button:{icons:{primary:'ui-icon-trash'}}}">Delete</button>
    
    </td>
    </tr>
    </table>
    
    <!--<button class="jqModal {button:{icons:{primary:'ui-icon-signal-diag'}}}" id="dialog_route"
    	href="<?php echo SITE_URL?>/admin/action.php/operations/viewmap?type=pirep&id=<?php echo $pirep->pirepid;?>">Route</button>-->
    
    </div>
    <br />
    <?php
    # If there was an error, don't allow the PIREP to go through
    if($pirep->aircraft == '')
    {
    $error = true;
    Template::Set('message', 'No aircraft for this PIREP. You must edit and assign before you can accept it.');
    Template::Show('core_error.tpl');
    }	
    ?>
    <table id="details_dialog_<?php echo $pirep->pirepid;?>" 
    style="display:none; border-left: 3px solid #FF6633; margin-top: 3px;padding-left: 3px;" width="100%">
    <tr>
    <td><strong>Client: </strong> <?php echo $pirep->source; ?></td>
    <td><strong>Aircraft: </strong>
    		<?php 
    		if($pirep->aircraft == '')
    		{
    			$error = true;
    			echo '<span style="color: red">No aircraft! Edit to change</span>';
    		}
    		else
    			echo $pirep->aircraft. " ($pirep->registration)";
    		?>
    </td>
    <td><strong>Flight Time: </strong> <?php echo $pirep->flighttime_stamp; ?></td>
    <td><strong>Distance: </strong><?php echo $pirep->distance; ?> </td>
    <td><strong>Landing Rate: </strong><?php echo $pirep->landingrate; ?> </td>
    </tr>
    <tr>
    <td colspan="5"><strong>Route: </strong><?php echo $pirep->route;?> 
    <a id="dialog" class="jqModal" style="font-weight: 400;"
       href="<?php echo SITE_URL?>/admin/action.php/operations/viewmap?type=pirep&id=<?php echo $pirep->pirepid;?>">View</a>
    </td>
    </tr>
    <tr>
    <td><strong>Load/Price: </strong><?php echo (($pirep->load!='')?$pirep->load:'-').' / '.FinanceData::formatMoney($pirep->price);?></td>
    <td><strong>Pilot Pay: </strong><?php echo FinanceData::formatMoney($pirep->pilotpay);?></td>
    <td><strong>Fuel Used: </strong><?php echo ($pirep->fuelused!='') ? $pirep->fuelused.Config::Get('LIQUID_UNIT_NAMES', Config::Get('LiquidUnit')) : '-';?></td>
    <td><strong>Revenue: </strong><?php echo FinanceData::formatMoney($pirep->revenue);?></td>
    <td><strong>Gross: </strong><?php echo FinanceData::formatMoney($pirep->gross);?></td>
    
    </tr>
    <?php
    // Get the additional fields
    //	I know, badish place to put it, but it's pulled per-PIREP
    $fields = PIREPData::GetFieldData($pirep->pirepid);
    if(!$fields)
    {
    echo 'No additional data found';
    }
    else
    {
    $i=1;
    echo '<tr>';
    
    foreach ($fields as $field)
    {
    	if($i == 1)
    	{
    		echo '<tr>';
    	}
    
    	echo "<td><strong>{$field->title}:</strong> {$field->value}</td>";
    
    	if($i == 5)
    	{
    		echo '</tr>';
    		$i = 0;
    	}
    
    	$i++;
    }
    }
    
    echo '</tr>';
    ?>
    </table>
    </td>
    </tr>
    <?php
    } /* Close the PIREPs loop */
    ?>
    </tbody>
    </table>
    <span style="float: right">* - double click to select</span><br />
    
    <?php
    if(isset($paginate))
    {
    ?>
    <div style="float: right;">
    <a href="?admin=<?php echo $admin?>&start=<?php echo $start?>">Next Page</a>
    <br />
    </div>
    <?php
    } /* Close the paginate loop */
    ?>
    </div>
    <script type="text/javascript">
    $("button, input:button, input:submit").button();
    </script>

    • Like 1
  5. What I did was I went through every single airport and edited them all (over 1000 of them) and then created a table in the schedules_results.tpl

    This what you could do.

    <table>
       <tr>
           <th>Airline</th>
    <th>Departure Airport</th>
    <th>Arrival Airport</th>
    <th>Aircraft</th>
    <th>Bid Flight</th>
       </tr>
    </tr>
        <td><?php echo $route->code. '-'. $route->flightnum ?></td>
        <td><font color="#333333" size="1"><?php echo $route->deptime;?></font><br /><font size="1"><strong><?php $departname = OperationsData::getAirportInfo($route->depicao);?><?php echo $departname->name;?></font></strong>/td>
        <td><font color="#333333" size="1"><?php echo $route->arrtime;?></font><br /><font size="1"><strong><?php $arrivename = OperationsData::getAirportInfo($route->arricao);?><?php echo $arrivename->name;?></font></strong></td>
        <td align="center"><font size="1"><?php echo $route->aircraft ?></font></td>
        <td><a id="<?php echo $route->id; ?>" class="addbid" 
    			href="<?php echo actionurl('/schedules/addbid');?>">Add to Bid</a>
    	<?php
    	}
    	else
    	{
    		if(Auth::LoggedIn())
    		{
    		 ?>
    			<a id="<?php echo $route->id; ?>" class="addbid" 
    				href="<?php echo url('/schedules/addbid');?>">Add to Bid</a>
    		<?php			 
    		}
    	}		
    	?>
    </td>
    </table>
    

    There is a lot of missing coding in there to save space in this post, but I hope you get where I'm going here.

×
×
  • Create New...