1: <?php
2: /**
3: * Agora General View Class
4: *
5: * Copyright 2007-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information (GPL). If you
8: * did not receive this file, see http://www.horde.org/licenses/gpl.
9: *
10: * @author Duck <duck@obala.net>
11: * @package Agora
12: */
13: class Agora_View extends Horde_View {
14:
15: /**
16: * Constructor
17: */
18: public function __construct()
19: {
20: /* Set default data. */
21: parent::__construct(array('templatePath' => AGORA_TEMPLATES));
22: }
23:
24: }
25: