mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-07 15:59:02 +00:00
11 lines
299 B
PHP
11 lines
299 B
PHP
|
<?php
|
||
|
interface AdmDispatcher {
|
||
|
/*---------------------------
|
||
|
The admin dispatcher allows us to perform operations on child nodes.
|
||
|
---------------------------*/
|
||
|
function insertNode(&$n);
|
||
|
function removeNode($id);
|
||
|
function updateNode($id,$data);
|
||
|
function getNode($id);
|
||
|
}
|
||
|
?>
|