1: <?php
2: /**
3: * Copyright 2014 Horde LLC (http://www.horde.org/)
4: *
5: * See the enclosed file COPYING for license information (GPL). If you
6: * did not receive this file, see http://www.horde.org/licenses/gpl.
7: *
8: * @category Horde
9: * @copyright 2014 Horde LLC
10: * @license http://www.horde.org/licenses/gpl GPL
11: * @package IMP
12: */
13:
14: /**
15: * This class identifies the javascript necessary to output the autocompleter
16: * javascript to the browser.
17: *
18: * @author Michael Slusarz <slusarz@horde.org>
19: * @category Horde
20: * @copyright 2014 Horde LLC
21: * @license http://www.horde.org/licenses/gpl GPL
22: * @package IMP
23: */
24: class IMP_Script_Package_Autocomplete
25: extends Horde_Core_Script_Package_Keynavlist
26: {
27: /**
28: * Constructor.
29: */
30: public function __construct()
31: {
32: parent::__construct();
33:
34: $this->_files[] = new Horde_Script_File_JsDir('compose-base.js', 'imp');
35: $this->_files[] = new Horde_Script_File_JsDir('autocomplete.js', 'imp');
36: }
37:
38: }
39: