0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
core
/
Search
/
Expr
/
[
Home
]
File: Range.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: Range.php 33621 2011-03-24 15:21:30Z lphuberdeau $ class Search_Expr_Range implements Search_Expr_Interface { private $from; private $to; private $type; private $field; private $weight = 1.0; function __construct($from, $to, $type = null, $field = null) { $this->from = $from; $this->to = $to; $this->type = $type; $this->field = $field; } function getToken($which) { if ($which != 'from' && $which != 'to') { return null; } return new Search_Expr_Token($this->$which, $this->type, $this->field); } function setType($type) { $this->type = $type; } function setField($field = 'global') { $this->field = $field; } function setWeight($weight) { $this->weight = (float) $weight; } function getWeight() { return $this->weight; } function walk($callback) { return call_user_func($callback, $this, array()); } function getValue(Search_Type_Factory_Interface $typeFactory) { $type = $this->type; return $typeFactory->$type($this->string); } function getField() { return $this->field; } }