Details |
Last modification |
View Log
| Rev |
Author |
Line No. |
Line |
| 41 |
mjordaan |
1 |
<?php namespace ProcessWire;
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* This file is just here for backwards compatibility
|
|
|
5 |
*
|
|
|
6 |
* It is called by /site/templates/admin.php on sites running a /site/templates/ dir from before the admin
|
|
|
7 |
* controller was move to the /wire/core/admin.php dir.
|
|
|
8 |
*
|
|
|
9 |
* This file need not be present in new admin themes, and will eventually be removed from this theme.
|
|
|
10 |
*
|
|
|
11 |
*/
|
|
|
12 |
|
|
|
13 |
/** @var Config $config */
|
|
|
14 |
if(!defined("PROCESSWIRE")) die();
|
|
|
15 |
require($config->paths->core . "admin.php");
|