Skip to content

Commit

Permalink
Improve the urls with silex.
Browse files Browse the repository at this point in the history
  • Loading branch information
csev committed May 1, 2017
1 parent 92962a9 commit 37ce045
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 7 deletions.
15 changes: 15 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^ - [E=protossl]
RewriteCond %{HTTPS} on
RewriteRule ^ - [E=protossl:s]
RewriteRule "(^|/)\." - [F]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ silex.php [L]
</IfModule>

<IfModule !mod_rewrite.c>
FallbackResource silex.php
</IfModule>
8 changes: 4 additions & 4 deletions nav.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
$adminmenu = isset($_COOKIE['adminmenu']) && $_COOKIE['adminmenu'] == "true";
$set = new \Tsugi\UI\MenuSet();
$set->setHome($CFG->servicename, $CFG->apphome);
$set->addLeft('Get Started', $R.'install.php');
$set->addLeft('Get Started', $R.'install');
// $set->addLeft('Lessons', $T.'lessons.php');
$set->addLeft('Lessons', $T.'lessons');
if ( isset($_SESSION['id']) ) {
Expand All @@ -14,7 +14,7 @@
if ( isset($CFG->disqushost) ) $set->addLeft('Discuss', $T.'discuss.php');
else if ( isset($CFG->disquschannel) ) $set->addLeft('Discuss', $CFG->disquschannel);
} else {
$set->addLeft('Materials', $R.'materials.php');
$set->addLeft('Materials', $R.'materials');
}

if ( isset($_SESSION['id']) ) {
Expand All @@ -24,7 +24,7 @@
$submenu->addLink('Map', $T.'map.php');
}
$submenu->addLink('Badges', $T.'badges.php');
$submenu->addLink('Materials', $R.'materials.php');
$submenu->addLink('Materials', $R.'materials');
if ( $CFG->DEVELOPER ) {
$submenu->addLink('Test LTI Tools', $T . 'dev.php');
}
Expand All @@ -46,7 +46,7 @@
$set->addRight('Login', $T.'login.php');
}

$set->addRight('Book', $R . 'book.php');
$set->addRight('Book', $R . 'book');
$set->addRight('Instructor', 'http://www.dr-chuck.com');

// Set the topNav for the session
Expand Down
40 changes: 40 additions & 0 deletions silex.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php

require_once("tsugi/vendor/autoload.php");

$app = new \Silex\Application();
// $app['debug'] = true;

$app->error(function (\Exception $e, $code) use ($app) {
global $CFG, $OUTPUT, $USER, $CONTEXT, $LINK, $RESULT;
include("top.php");
include("nav.php");
?>
<div>
<p>You have accessed a page which does not exist.
</p>
</div>
<?php
include("footer.php");
return "";
});

$app->get('/materials', function () {
global $CFG, $OUTPUT, $USER, $CONTEXT, $LINK, $RESULT;
require_once('materials.php');
return "";
});

$app->get('/book', function () {
global $CFG, $OUTPUT, $USER, $CONTEXT, $LINK, $RESULT;
require_once('book.php');
return "";
});

$app->get('/install', function () {
global $CFG, $OUTPUT, $USER, $CONTEXT, $LINK, $RESULT;
require_once('install.php');
return "";
});

$app->run();
8 changes: 5 additions & 3 deletions top.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<?php
use \Tsugi\Core\LTIX;

define('COOKIE_SESSION', true);
require_once "tsugi/config.php";
$LAUNCH = LTIX::session_start();
if ( ! isset($CFG) ) {
if (!defined('COOKIE_SESSION')) define('COOKIE_SESSION', true);
require_once "tsugi/config.php";
$LAUNCH = LTIX::session_start();
}

$OUTPUT->header();

0 comments on commit 37ce045

Please sign in to comment.