* @category Horde * @license http://www.horde.org/licenses/gpl GPL * @package Nag */ class Nag_Ajax_Application extends Horde_Core_Ajax_Application { /** */ protected function _init() { global $registry; $this->addHandler('Horde_Core_Ajax_Application_Handler_Prefs'); switch ($registry->getView()) { case $registry::VIEW_SMARTMOBILE: $this->addHandler('Nag_Ajax_Application_Handler_Smartmobile'); break; } } }