flatpress/admin/panels/entry/admin.entry.php
Fraenkiman af5c77e166 Enables NoWhereMan's statistics panel
Fixes #241 and enables NoWhereMan's statistics panel
2023-05-07 15:23:40 +02:00

38 lines
517 B
PHP
Executable File

<?php
/**
* edit entry panel
*
* Type:
* Name:
* Date:
* Purpose:
* Input:
*
* @author NoWhereMan <real_nowhereman at users dot sf dot com>
*
*/
class admin_entry extends AdminPanel {
var $panelname = "entry";
var $actions = array(
'list' => true,
'write' => true,
'commentlist' => false,
'commedit' => false,
'delete' => false,
'cats' => true,
'stats' => true
);
var $defaultaction = 'list';
}
?>