bool
DB_NestedSet::removeListener
(
string
$event
,
string
$listenerID
)
Removes the event listener with the given ID
$event
The ivent name
$listenerID
The listener's ID
throws no exceptions thrown
This function can not be called statically.
Remove Listener
<?php
require_once('DB/NestedSet.php');
$nestedSet =& DB_NestedSet::factory('DB', $dsn, $params);
$nestedSet->AddListener("nodeCreate", "listener");
$nestedSet->RemoveListener("nodeCreate", "listener");
?>