1: <?php
2: /**
3: * A negating element.
4: *
5: * PHP version 5
6: *
7: * @category Kolab
8: * @package Kolab_Server
9: * @author Gunnar Wrobel <wrobel@pardus.de>
10: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
11: * @link http://pear.horde.org/index.php?package=Kolab_Server
12: */
13:
14: /**
15: * A negating element.
16: *
17: * Copyright 2008-2012 Horde LLC (http://www.horde.org/)
18: *
19: * See the enclosed file COPYING for license information (LGPL). If you
20: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
21: *
22: * @category Kolab
23: * @package Kolab_Server
24: * @author Gunnar Wrobel <wrobel@pardus.de>
25: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
26: * @link http://pear.horde.org/index.php?package=Kolab_Server
27: */
28: class Horde_Kolab_Server_Query_Element_Not
29: extends Horde_Kolab_Server_Query_Element_Group
30: {
31: /**
32: * Constructor.
33: *
34: * @param array $elements The group elements.
35: */
36: public function __construct(
37: Horde_Kolab_Server_Query_Element_Interface $element
38: ) {
39: parent::__construct(array($element));
40: }
41:
42: /**
43: * Convert this element to a query element.
44: *
45: * @return mixed The element as query.
46: */
47: public function convert(
48: Horde_Kolab_Server_Query_Interface $writer
49: ) {
50: return $writer->convertNot($this);
51: }
52: }