khanat-opennel-code/code/web/app/app_achievements_admin/class/ADM_inter.php
SirCotare 7d976a22ad #1470 admin tool workprint; menu admin almost complete; wip!!
--HG--
branch : gsoc2012-achievements
2012-06-25 15:04:51 +02:00

17 lines
No EOL
418 B
PHP

<?php
interface ADM {
/*---------------------------
The admin interface defines the basic operations every node must handle.
These are needed to invoke the database operations insert, update and delete.
---------------------------*/
function delete_me();
function update();
function insert();
function setInDev($true_false);
function getID(); // needed to identify a node
}
?>