7d976a22ad
--HG-- branch : gsoc2012-achievements
11 lines
No EOL
299 B
PHP
11 lines
No EOL
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);
|
|
}
|
|
?>
|