1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-10 00:37:02 +02:00
Files
processwire/wire/templates-admin/controller.php
2020-07-10 12:32:08 -04:00

16 lines
478 B
PHP

<?php namespace ProcessWire;
/**
* This file is just here for backwards compatibility
*
* It is called by /site/templates/admin.php on sites running a /site/templates/ dir from before the admin
* controller was move to the /wire/core/admin.php dir.
*
* This file need not be present in new admin themes, and will eventually be removed from this theme.
*
*/
/** @var Config $config */
if(!defined("PROCESSWIRE")) die();
require($config->paths->core . "admin.php");