blob: 07e8976a9504c87190a79408ae5a190b587473c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/*
* File: ratatoeskr/sys/init_ste.php
*
* When included, the file will initialize the global STECore instance.
*
* License:
* This file is part of Ratatöskr.
* Ratatöskr is licensed unter the MIT / X11 License.
* See "ratatoeskr/licenses/ratatoeskr" for more information.
*/
use r7r\cms\sys\GlobalSte;
use r7r\ste\STECore;
/**
* @var STECore The global STECore instance.
* @deprecated Use {@see GlobalSte} directly now.
*/
$ste = GlobalSte::getGlobalSte();
|