Horde_Kolab_Server_Query_Element_Group::__construct PHP Method

__construct() public method

Constructor.
public __construct ( array $elements )
$elements array The group elements.
    public function __construct(array $elements)
    {
        $this->_elements = $elements;
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Constructor.
  *
  * @param array  $elements The group elements.
  */
 public function __construct(Horde_Kolab_Server_Query_Element_Interface $element)
 {
     parent::__construct(array($element));
 }
Horde_Kolab_Server_Query_Element_Group