mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-07 15:59:02 +00:00
15 lines
381 B
PHP
15 lines
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
|
||
|
}
|
||
|
?>
|