Jump to content

Zeke

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by Zeke

  1. On / Off function

    acarsmap.js

    /**
    * phpVMS - Virtual Airline Administration Software
    * Copyright (c) 2008 Nabeel Shahzad
    * For more information, visit www.phpvms.net
    * Forums: http://www.phpvms.net/forum
    * Documentation: http://www.phpvms.net/docs
    *
    * phpVMS is licenced under the following license:
    * Creative Commons Attribution Non-commercial Share Alike (by-nc-sa)
    * View license.txt in the root, or visit http://creativecommons.org/licenses/by-nc-sa/3.0/
    *
    * @author Nabeel Shahzad
    * @copyright Copyright (c) 2008, Nabeel Shahzad
    * @link http://www.phpvms.net
    * @license http://creativecommons.org/licenses/by-nc-sa/3.0/
    *
    * Rewritten for Google Maps v3
    */
    var flightMarkers = [];
    var routeMarkers = [];
    var flightPath = null;
    var depMarker = null, arrMarker = null;
    var info_window= null;
    var run_once = false;
    var mapOptions = {
    zoom: 4,
    center: new google.maps.LatLng(47.437047,19.248515),
    mapTypeId: google.maps.MapTypeId.HYBRID };
    var map = new google.maps.Map(document.getElementById("acarsmap"), mapOptions);
    var weatherLayer = new google.maps.weather.WeatherLayer({ temperatureUnits: google.maps.weather.TemperatureUnit.CELSIUS }); weatherLayer.setMap(null);
    var cloudLayer = new google.maps.weather.CloudLayer(); cloudLayer.setMap(null)
    setWindSpeed(google.maps.weather.WindSpeedUnit.KILOMETERS_PER_HOUR)
    var defaultOptions = {
    autozoom: true,
    refreshTime: 38000,
    autorefresh: true
    };
     function toggleClouds() {
     cloudLayer.setMap(cloudLayer.getMap() ? null : map);
     }
     function toggleIcons() {
     weatherLayer.setMap(weatherLayer.getMap() ? null : map);
     }
     function setWindSpeed(units) {
     weatherLayer.setOptions({'windSpeedUnits': units});
     }
    var options = $.extend({}, defaultOptions, acars_map_defaults);
    //var map = new google.maps.Map(document.getElementById("acarsmap"), options);
    

    acarsmap.tpl

    <div align="right">
    Wind speed units:
     <input name="wind" onclick="setWindSpeed(google.maps.weather.WindSpeedUnit.MILES_PER_HOUR)" type="radio">mph
     <input name="wind" checked="" onclick="setWindSpeed(google.maps.weather.WindSpeedUnit.KILOMETERS_PER_HOUR)" type="radio">km/h
     <input name="wind" onclick="setWindSpeed(google.maps.weather.WindSpeedUnit.METERS_PER_SECOND)" type="radio">m/s</td>
     <button onclick="toggleClouds()">Toggle clouds</button>
     <button onclick="toggleIcons()">Toggle icons</button>
    </div>
    

    Demo:http://matraair.tarhely.biz

  2. <?php
    // Sets the number of topics to display
    $topicnumber = 5;
    // Change this to your PHPBB3 path (no trailing slash "/")
    $urlPath = "URL to your forums/";
    // Database configuration (where your PHPBB3 config.php file is located)
    include 'config.php';
    // Database connection and error messages
    
    $table_topics = $table_prefix. "topics";
    $table_forums = $table_prefix. "forums";
    $table_posts = $table_prefix. "posts";
    $table_users = $table_prefix. "users";
    $link = mysql_connect("$dbhost", "$dbuser", "$dbpasswd") or die("Could not connect");
    mysql_select_db("$dbname") or die("Could not select database");
    mysql_set_charset('utf8');
    
    // Main database query
    $query = "SELECT t.topic_id, t.topic_title, t.topic_last_post_id, t.forum_id, p.post_id, p.poster_id, p.post_time, u.user_id, u.username
    FROM $table_topics t, $table_forums f, $table_posts p, $table_users u
    WHERE t.topic_id = p.topic_id AND
    f.forum_id = t.forum_id AND
    /**********************
    ***********************
    EXCLUDE THESE FORUM IDs (if you have private forums)
    ***********************
    **********************/
    t.forum_id != 17 AND
    t.forum_id != 19 AND
    t.forum_id != 20 AND
    /**********************
    ***********************
    END EXCLUSIONS
    ***********************
    **********************/
    /* Back to the query... */
    t.topic_status <> 2 AND
    p.post_id = t.topic_last_post_id AND
    p.poster_id = u.user_id
    ORDER BY p.post_id DESC LIMIT $topicnumber";
    $result = mysql_query($query) or die("Query failed");
    while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
    // HTML parsing
    echo  "<a href=\"$urlPath/viewtopic.php?f=$row[forum_id]&t=$row[topic_id]&p=$row[post_id]#p$row[post_id]\" class='topic_new' target='_blank'>" .
    $row["topic_title"] .
    "</a><br /><a href=\"$urlPath/memberlist.php?mode=viewprofile&u=$row[user_id]\" target='_blank'>" .
    $row["username"] . "</a> on " .
    datum($row["post_time"]) . "<br /><br />";
    }
    mysql_free_result($result);
    mysql_close($link);
    
    function datum($time) {
    $ma = mktime(0, 0, 0, date("m"), date("d"), date("Y"));
    $tegnap = $ma-(60*60*24);
    
    if($time > $ma) { $datum = "today, " . date("H:i",$time); }
    elseif($ma > $time AND $time > $tegnap) { $datum = "yesterday, " . date("H:i",$time); }
    elseif($time < $tegnap) { $datum = date ("M j, Y H:i",$time); }
    
    return $datum;
    }
    ?>
    

×
×
  • Create New...