parent
a42d6d9a76
commit
a02851452b
3 changed files with 3 additions and 13 deletions
|
@ -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);
|
||||
}
|
||||
?>
|
|
@ -1,5 +1,6 @@
|
|||
<?php
|
||||
class AdmMenu extends AchMenu implements AdmDispatcher {
|
||||
class AdmMenu extends AchMenu {
|
||||
use Dispatcher;
|
||||
|
||||
function AdmMenu($open) {
|
||||
parent::__construct($open);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
$this->nodes[] = $n;
|
||||
}
|
||||
|
||||
function removeNode($id) {
|
||||
function removeNode($id) {#NAMENSKONFLIKT!!
|
||||
$res = $this->getNode($id);
|
||||
if($res != null) {
|
||||
$res->delete_me();
|
||||
|
|
Loading…
Reference in a new issue