7d976a22ad
--HG-- branch : gsoc2012-achievements
17 lines
No EOL
418 B
PHP
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
|
|
}
|
|
?>
|