khanat-code-old/code/web/app/app_achievements_admin/class/AdmDispatcher_inter.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);
}
?>