0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
core
/
Search
/
Expr
/
[
Home
]
File: And.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: And.php 53803 2015-02-06 00:42:50Z jyhem $ class Search_Expr_And implements Search_Expr_Interface { private $parts; private $weight = 1.0; function __construct(array $parts) { $this->parts = $parts; } function __clone() { $this->parts = array_map(function ($part) { return clone $part; }, $this->parts); } function addPart(Search_Expr_Interface $part) { $this->parts[] = $part; } function setType($type) { foreach ($this->parts as $part) { $part->setType($type); } } function setField($field = 'global') { foreach ($this->parts as $part) { $part->setField($field); } } function setWeight($weight) { $this->weight = (float) $weight; } function getWeight() { return $this->weight; } function walk($callback) { $results = array(); foreach ($this->parts as $part) { $results[] = $part->walk($callback); } return call_user_func($callback, $this, $results); } function traverse($callback) { return call_user_func($callback, $callback, $this, $this->parts); } }