mirror of https://github.com/PurpleI2P/regi2p.git
Domain registry project
http://reg.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
980 B
35 lines
980 B
<?php |
|
|
|
require_once __DIR__ . '/../vendor/autoload.php'; |
|
require_once __DIR__ . '/../config.php'; |
|
|
|
/* Initialize Twig engine */ |
|
$loader = new \Twig\Loader\FilesystemLoader(__DIR__ . '/../templates'); |
|
$twig = new \Twig\Environment($loader, [ |
|
'cache' => __DIR__ . '/../cache', |
|
'auto_reload' => true, |
|
]); |
|
|
|
$subscrs = array(); |
|
|
|
if ($options['fetcher']) { |
|
$pdo = (new App\DB($options))->pdo; |
|
|
|
$STH = $pdo->query ("SELECT `name` FROM `subscriptions` WHERE `active` = 1"); |
|
$STH->setFetchMode(PDO::FETCH_ASSOC); |
|
$subscrs = $STH->fetchAll(); |
|
} |
|
|
|
$vars = array( |
|
'approval' => $options['approval'], |
|
'apprdelay' => $options['approvedelay'], |
|
'apprseen' => $options['approveseen'], |
|
'newdays' => $options['newdays'], |
|
'delnewdays' => $options['delnewdays'], |
|
'delolddays' => $options['delolddays'], |
|
'fetcher' => $options['fetcher'], |
|
'subscrs' => $subscrs |
|
); |
|
|
|
$template = $twig->load('home.twig'); |
|
echo $template->render($vars);
|
|
|