-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtool.php
More file actions
29 lines (23 loc) · 676 Bytes
/
Copy pathtool.php
File metadata and controls
29 lines (23 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
declare(strict_types=1);
use Subway\core\Subway;
use Subway\core\template\TwigBox;
/**
* @package Subway
* @version 0.1.1
* @authors Kant (Aldus)
* @license CC BY-SA 4.0
* @license_terms https://creativecommons.org/licenses/by-sa/4.0/
* @platform WBCE 1.6.x
* @requirements PHP 8.4.x (8.3 recommented)
*/
Subway::getInstance()->initBackend();
$oTwig = TwigBox::getInstance();
$oTwig->registerModule("Subway");
echo $oTwig->render(
"@Subway/tool.lte",
[
'message' => Subway::getInstance()->language['NO_INTERFACE'],
'cimage' => WB_URL."/modules/Subway/img/construction_site.png"
]
);