__construct() - every event class have variable which tells
is this event public or not. Default value is 'not public'. If you want to do event public you'll
have to redefine this method in this way:function __construct() {
$this->_isPublic = true;
parent::__construct();
}