$boolean = $session->getEventExported( $class, $event )
The getEventExported() function is an alias for eventIsExported(). The section “eventIsExported” on page 76 provides additional information.
Returns one of the following:
-
1 if the specified event is exported by the class
-
0 if it is not exported.
Events that are not exported are hidden from view in the GUI.
if ( $session->getEventExported( "Router", "Down" ) ) { print "Event is exported\n”; }