Skip to content

Commit

Permalink
Adapts collections/exsiccati 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 18, 2020
1 parent 3b12928 commit 513c591
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
13 changes: 11 additions & 2 deletions collections/exsiccati/batchimport.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,17 @@
<html>
<head>
<title><?php echo $DEFAULT_TITLE; ?> Exsiccati Batch Transfer</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 = false;
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">
function verifyExsTableForm(f){
var formVerified = false;
Expand Down
13 changes: 11 additions & 2 deletions collections/exsiccati/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,17 @@
<html>
<head>
<title><?php echo $DEFAULT_TITLE; ?> Exsiccati</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 = false;
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>
Expand Down

0 comments on commit 513c591

Please sign in to comment.