return (substr($type, 0, 10) == 'kronolith.') || parent::handles($type);
}
- /**
- * Returns all status message if there are any on the 'status' message
- * stack.
- *
- * @param array &$messageStack The stack of messages.
- * @param array $options An array of options.
- */
- public function notify(&$messageStack, $options = array())
- {
- /* Don't capture notification messages if we are logging out are
- * accessing the options pages. */
- if (Horde_Auth::getAuth() && !strstr($_SERVER['PHP_SELF'], '/prefs.php')) {
- $options['store'] = true;
- }
- parent::notify($messageStack, $options);
- }
-
}