Elgg\EventsService::triggerAfter PHP Method

triggerAfter() public method

Unlike regular events, all the handlers will be called, their return values ignored. To register for an after event, append ":after" to the event name when registering.
See also: triggerBefore
Since: 2.0.0
public triggerAfter ( string $event, string $object_type, string $object = null ) : true
$event string The event type. The fired event type will be appended with ":after".
$object_type string The object type
$object string The object involved in the event
return true
    public function triggerAfter($event, $object_type, $object = null)
    {
        $options = array(self::OPTION_STOPPABLE => false);
        return $this->trigger("{$event}:after", $object_type, $object, $options);
    }