* @category Horde * @license http://www.horde.org/licenses/apache ASL * @package Turba */ class Turba_Ajax_Application extends Horde_Core_Ajax_Application { /** */ protected function _init() { global $registry; switch ($registry->getView()) { case $registry::VIEW_SMARTMOBILE: $this->addHandler('Turba_Ajax_Application_Handler_Smartmobile'); break; } $this->addHandler('Turba_Ajax_Application_Handler_Minisearch'); } }