This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$event = 0; | |
try { | |
// attempts to get an event object from the Event library | |
// using the original command as defined in the WaiCommand | |
$event = Event::get_event($command->get_original(), $_SESSION['instance_id']); | |
// actually handles the event and returns the text to be rendered | |
return $event->handle(); |
NewerOlder