Example #1
0
 function menu($page)
 {
     //set links
     $category = bytbilHelper::currentPage('sub');
     $staticURL = bytbilHelper::thisURL($category);
     $infoLink = $staticURL;
     $bilderLink = $staticURL . '&bilder=1';
     $interestLink = $staticURL . '&interest=1';
     switch ($category) {
         case '':
             $infoId = 'topfocus';
             $bildId = 'topblurright';
             $interestId = 'topblurright';
             break;
         case 'bilder':
             $infoId = 'topblurleft';
             $bildId = 'topfocus';
             $interestId = 'topblurright';
             break;
         case 'interest' || 'send':
             $infoId = 'topblurleft';
             $bildId = 'topblurleft';
             $interestId = 'topfocus';
             break;
     }
     echo '<div id="' . $infoId . '"><a id="menulink" href="' . $infoLink . '">Info</a></div><div id="' . $bildId . '"><a id="menulink" href="' . $bilderLink . '">Bilder</a></div><div id="' . $interestId . '"><a id="menulink" href="' . $interestLink . '">Intresseanmälan</a></div><br />';
 }
Example #2
0
<?php

/**
 * Bytbil Mod - Entry Point
 * 
 * @copyright 	(C) Copyright 2010 SoftPower Technology AB
 * @Module 		Bytbil Mod
 * @license		GNU/GPL
 * Any questions regarding this module shall be directed to:
 * stefan@softpower.se.
 * 
 * This piece of software is released "as is" and comes with no waranties;
 * use and modify it at your own discression. If you have any concern regarding the 
 * quality of the code or its security; please let me know.
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
JHTML::stylesheet('styles.css', 'modules/mod_bytbil/tmpl/css/');
JHTML::script('jscript.js', 'modules/mod_bytbil/tmpl/js/', $mootools = false);
//$document->addStyleSheet(dirname(__FILE__).DS.'tmpl'.DS.'css'.DS.'styles.css');
// Include the syndicate functions only once
require_once dirname(__FILE__) . DS . 'helper.php';
$xml = bytbilHelper::initialize($params);
$page = bytbilHelper::currentPage('main');
$subPage = bytbilHelper::currentPage('sub');
$defaultURL = bytbilHelper::thisURL($page);
require JModuleHelper::getLayoutPath('mod_bytbil');
Example #3
0
<?php

// no direct access
defined('_JEXEC') or die('Restricted access');
?>
<!-- Bytbilmodul utvecklad av SoftPower Technology AB www.softpower.se -->
<?php 
if (isset($page)) {
    bytbilHelper::menu($page);
    if (!empty($subPage)) {
        bytbilHelper::viewSub($xml, $subPage);
    } else {
        bytbilHelper::viewMode($xml);
    }
} else {
    echo '<h1><a href="' . $defaultURL . '"> Bilar i lager</a></h1>';
    bytbilHelper::listMode($xml, $defaultURL);
}