summaryrefslogtreecommitdiffstats
path: root/common/admin/administration.php
blob: 26f67108dcd7909679e14e4020084ef06837df96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php

require_once __DIR__ . '/../app/app.php';
require_once __DIR__ . '/inc/auth.inc.php';


$opml         = OpmlManager::load(__DIR__ . '/../custom/people.opml');
$opml_people  = $opml->getPeople();
$page_id      = 'admin-admin';
$header_extra = <<<"HTML"
    <script>
    window.onload = function(){
        var formManage = document.getElementById('frmPurge');
        formManage.onsubmit = function(){
            return confirm("{$l10n->getString('Are you sure you want to purge the cache?')}");
        }
    }
    </script>

HTML;

$page_content = <<<"FRAGMENT"

            <div class="widget">
                <h3>{$l10n->getString('Clear cache')}</h3>
                <form action="purgecache.php" method="post" id="frmPurge">
                    <input type="hidden" value="{$csrf->generate('frmPurge')}" name="_csrf">
                    <p><label>{$l10n->getString('Clear cache:')}</label><input type="submit" class="submit delete" name="purge" id="purge" value="{$l10n->getString('Clear')}" /></p>
                    <p class="help">{$l10n->getString('Clearing the cache will make moonmoon reload all feeds.')}</p>
                </form>
            </div>

            <div class="widget">
                <h3>{$l10n->getString('Change administrator password')}</h3>
                <form action="changepassword.php" method="post" id="frmPassword">
                    <input type="hidden" value="{$csrf->generate('frmPassword')}" name="_csrf">
                    <p><label for="password">{$l10n->getString('New password:')}</label> <input type="password" class="text" value="" name="password" id="password" size="20" /> <input type="submit" class="submit delete" name="changepwd" id="changepwd" value="{$l10n->getString('Change password')}" /></p>
                </form>
            </div>

FRAGMENT;

$footer_extra = '';
$admin_access = 1;
require_once __DIR__ . '/template.php';