Skip to content

Commit

Permalink
Adapts requests files to new framework structure
Browse files Browse the repository at this point in the history
Works on #6
  • Loading branch information
arbolitoloco committed Feb 6, 2020
1 parent 1daf280 commit c15d63e
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions requests/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,22 @@
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $CHARSET;?>">
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $CHARSET;?>">
<title><?php echo $DEFAULT_TITLE; ?> Action Requests</title>
<link href="../css/base.css?ver=<?php echo $CSS_VERSION; ?>" type="text/css" rel="stylesheet" />
<link href="../css/main.css<?php echo (isset($CSS_VERSION_LOCAL)?'?ver='.$CSS_VERSION_LOCAL:''); ?>" type="text/css" rel="stylesheet" />
<?php
$activateJQuery = true;
if(file_exists($SERVER_ROOT.'/includes/head.php')){
include_once($SERVER_ROOT.'/includes/head.php');
}
else{
echo '<link href="'.$CLIENT_ROOT.'/css/jquery-ui.css" type="text/css" rel="stylesheet" />';
echo '<link href="'.$CLIENT_ROOT.'/css/base.css?ver=1" type="text/css" rel="stylesheet" />';
echo '<link href="'.$CLIENT_ROOT.'/css/main.css?ver=1" type="text/css" rel="stylesheet" />';
}
?>
<script type="text/javascript">
<?php include_once($SERVER_ROOT.'/includes/googleanalytics.php'); ?>
</script>
<link type="text/css" href="../css/jquery-ui.css" rel="Stylesheet" />
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="../js/jquery-ui.js"></script>
<!-- Supporting visualsearch search box widget -->
Expand Down

0 comments on commit c15d63e

Please sign in to comment.