khanat-opennel-code/code/web/app/app_achievements_admin/class/ADM_inter.php
SirCotare ec524af567 #1470 admin tool; dev workprint
--HG--
branch : gsoc2012-achievements
2012-07-02 18:56:13 +02:00

15 lines
No EOL
381 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 getID(); // needed to identify a node
}
?>