You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
445 B
PHTML
16 lines
445 B
PHTML
7 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Admin template just loads the admin application controller,
|
||
|
* and admin is just an application built on top of ProcessWire.
|
||
|
*
|
||
|
* This demonstrates how you can use ProcessWire as a front-end
|
||
|
* to another application.
|
||
|
*
|
||
|
* Feel free to hook admin-specific functionality from this file,
|
||
|
* but remember to leave the require() statement below at the end.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
require($config->paths->adminTemplates . 'controller.php');
|