1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
Files
archived-web-php/archive/2022.php
Andreas Möller d9bcfed482 Enhancement: Enable array_syntax fixer
Co-authored-by: MathiasReker <mathias@reker.dk>

Closes GH-659.
2022-08-22 18:59:14 +02:00

22 lines
459 B
PHP

<?php
$_SERVER['BASE_PAGE'] = 'archive/2022.php';
include_once __DIR__ . '/../include/prepend.inc';
include_once __DIR__ . '/../include/pregen-news.inc';
news_archive_sidebar();
site_header("News Archive - 2022");
?>
<h1>News Archive - 2022</h1>
<p>
Here are the most important news items we have published in 2022 on PHP.net.
</p>
<hr>
<?php
print_news($NEWS_ENTRIES, null, 500, 2022);
site_footer(['elephpants' => true, 'sidebar' => $SIDEBAR_DATA]);