khanat-opennel-code/code/web/app/app_achievements_admin/class/AdmDispatcher_inter.php

11 lines
299 B
PHP
Raw Normal View History

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