flatpress/admin/panels/entry/admin.entry.php
Fraenkiman 05b6906596 Outsourcing statistics panel
- Outsourcing of the fixed statistics panel in a plugin
2024-04-12 01:37:08 +02:00

30 lines
472 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
);
var $defaultaction = 'list';
}
?>