khanat-opennel-code/code/web/app/app_achievements/_AchWebParser/class/Callback_class.php
SirCotare c888a5249e #1470 some cleanup; some bugfix; some documentation
--HG--
branch : gsoc2012-achievements
2012-08-20 15:52:35 +02:00

18 lines
No EOL
333 B
PHP

<?php
/*
* Callback container that handles doing the actual callback
*/
class Callback {
private $who;
private $func;
function Callback($who,$func) {
$this->who = $who;
$this->func = $func;
}
function call($what) { // now call it
eval(''.$this->func.'($what,$this->who,$this);');
}
}
?>