#1470 monday's push_all

--HG--
branch : gsoc2012-achievements
This commit is contained in:
SirCotare 2012-06-25 22:00:02 +02:00
parent a42d6d9a76
commit a02851452b
3 changed files with 3 additions and 13 deletions

View file

@ -1,11 +0,0 @@
<?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);
}
?>

View file

@ -1,5 +1,6 @@
<?php
class AdmMenu extends AchMenu implements AdmDispatcher {
class AdmMenu extends AchMenu {
use Dispatcher;
function AdmMenu($open) {
parent::__construct($open);

View file

@ -6,7 +6,7 @@
$this->nodes[] = $n;
}
function removeNode($id) {
function removeNode($id) {#NAMENSKONFLIKT!!
$res = $this->getNode($id);
if($res != null) {
$res->delete_me();