xref: /dokuwiki/lib/plugins/styling/popup.php (revision dda9db03f2cef0ac706d1d2f814ee897aff1d492)
16667cd87SAndreas Gohr<?php
26667cd87SAndreas Gohrif(!defined('DOKU_INC')) define('DOKU_INC', dirname(__FILE__) . '/../../../');
36667cd87SAndreas Gohrrequire_once(DOKU_INC . 'inc/init.php');
46667cd87SAndreas Gohr//close session
56667cd87SAndreas Gohrsession_write_close();
66667cd87SAndreas Gohrheader('Content-Type: text/html; charset=utf-8');
7d634152eSAnika Henkeheader('X-UA-Compatible: IE=edge,chrome=1');
86667cd87SAndreas Gohr
96667cd87SAndreas Gohr/** @var admin_plugin_styling $plugin */
106667cd87SAndreas Gohr$plugin = plugin_load('admin', 'styling');
11*dda9db03SAndreas Gohrif(!$plugin->isAccessibleByCurrentUser()) die('only admins allowed');
126667cd87SAndreas Gohr$plugin->ispopup = true;
136667cd87SAndreas Gohr
146667cd87SAndreas Gohr// handle posts
156667cd87SAndreas Gohr$plugin->handle();
166667cd87SAndreas Gohr
176667cd87SAndreas Gohr// output plugin in a very minimal template:
18d634152eSAnika Henke?><!DOCTYPE html>
19d634152eSAnika Henke<html lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>">
206667cd87SAndreas Gohr<head>
21d634152eSAnika Henke    <meta charset="utf-8" />
226667cd87SAndreas Gohr    <title><?php echo $plugin->getLang('menu') ?></title>
236667cd87SAndreas Gohr    <?php tpl_metaheaders(false) ?>
24d634152eSAnika Henke    <meta name="viewport" content="width=device-width,initial-scale=1" />
25d634152eSAnika Henke    <?php echo tpl_favicon(array('favicon')) ?>
266667cd87SAndreas Gohr</head>
27d634152eSAnika Henke<body class="dokuwiki">
286667cd87SAndreas Gohr    <?php $plugin->html() ?>
296667cd87SAndreas Gohr</body>
306667cd87SAndreas Gohr</html>
31