1
0

AoC prep finished

This commit is contained in:
Mike Schwörer 2019-11-03 15:44:47 +01:00
parent bdda2001e3
commit bbf29f440a
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
6 changed files with 32 additions and 6 deletions

View File

@ -26,7 +26,7 @@ $year = $post['extras']['aoc:year'];
<?php
global $PARAM_AOCCALENDAR;
$PARAM_AOCCALENDAR = ['year' => $year];
$PARAM_AOCCALENDAR = ['year' => $year, 'nav'=>true];
require (__DIR__ . '/../fragments/panel_aoc_calendar.php')
?>

View File

@ -59,7 +59,7 @@ $pd = new ParsedownCustom();
<?php
global $PARAM_AOCCALENDAR;
$PARAM_AOCCALENDAR = ['year' => $year];
$PARAM_AOCCALENDAR = ['year' => $year, 'nav'=>false];
require (__DIR__ . '/../fragments/panel_aoc_calendar.php')
?>

View File

@ -0,0 +1,23 @@
<?php
require_once(__DIR__ . '/../internals/adventofcode.php');
global $PARAM_AOCPANEL;
$year = $PARAM_AOCPANEL['year'];
?>
<div class="index_pnl_base">
<div class="index_pnl_header">
<a href="<?php echo AdventOfCode::getURLForYear($year); ?>">Advent of Code <?php echo $year; ?></a>
</div>
<div class="index_pnl_content">
<?php
global $PARAM_AOCCALENDAR;
$PARAM_AOCCALENDAR = ['year' => $year, 'nav'=>false];
require (__DIR__ . '/../fragments/panel_aoc_calendar.php')
?>
</div>
</div>

View File

@ -2,11 +2,12 @@
global $PARAM_AOCCALENDAR;
$year = $PARAM_AOCCALENDAR['year'];
$year = $PARAM_AOCCALENDAR['year'];
$shownav = $PARAM_AOCCALENDAR['nav'];
$assocdays = AdventOfCode::listSingleYearAssociative($year);
$prev_year = AdventOfCode::getPrevYear($year);
$next_year = AdventOfCode::getNextYear($year);
$prev_year = $shownav ? AdventOfCode::getPrevYear($year) : null;
$next_year = $shownav ? AdventOfCode::getNextYear($year) : null;
?>

View File

@ -24,6 +24,9 @@
<?php include (__DIR__ . '/../fragments/panel_books.php'); ?>
<?php /* global $PARAM_AOCPANEL; $PARAM_AOCPANEL=['year'=>2018]; include (__DIR__ . '/../fragments/panel_aoc.php'); */ ?>
<?php global $PARAM_AOCPANEL; $PARAM_AOCPANEL=['year'=>2019]; include (__DIR__ . '/../fragments/panel_aoc.php'); ?>
</div>
<?php include (__DIR__ . '/../fragments/footer.php'); ?>

View File

@ -1 +0,0 @@
//TODO ENTER TEXT HERE