0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
core
/
Search
/
Expr
/
[
Home
]
File: Not.php
<?php // (c) Copyright 2002-2011 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: Not.php 33621 2011-03-24 15:21:30Z lphuberdeau $ class Search_Expr_Not implements Search_Expr_Interface { private $expression; private $weight = 1.0; function __construct($expression) { $this->expression = $expression; } function setType($type) { $this->expression->setType($type); } function setField($field = 'global') { $this->expression->setField($field); } function setWeight($weight) { $this->weight = (float) $weight; } function getWeight() { return $this->weight; } function walk($callback) { $result = $this->expression->walk($callback); return call_user_func($callback, $this, array($result)); } }