khanat-opennel-code/code/web/app/app_achievements_admin/class/AdmDispatcher_inter.php
SirCotare 7d976a22ad #1470 admin tool workprint; menu admin almost complete; wip!!
--HG--
branch : gsoc2012-achievements
2012-06-25 15:04:51 +02:00

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);
}
?>