1: <?php
2: /**
3: * Copyright 2001-2002 Robert E. Coyle <robertecoyle@hotmail.com>
4: * Copyright 2001-2012 Horde LLC (http://www.horde.org/)
5: *
6: * See the enclosed file LICENSE for license information (BSD). If you
7: * did not receive this file, see http://www.horde.org/licenses/bsdl.php.
8: *
9: * @author Chuck Hagenbuch <chuck@horde.org>
10: * @author Michael J. Rubinsky <mrubinsk@horde.org>
11: * @package Whups
12: */
13: class Whups_View_SavedQueries extends Whups_View_Base
14: {
15: // Need title, results in params.
16: public function html($header = true)
17: {
18: if (!count($this->_params['results'])) {
19: return;
20: }
21:
22: include WHUPS_TEMPLATES . '/view/savedqueries.inc';
23: }
24: }
25: