Nominatim/lib-php/TokenSpecialTerm.php

42 lines
1.1 KiB
PHP
Raw Normal View History

<?php
namespace Nominatim\Token;
require_once(CONST_LibDir.'/SpecialSearchOperator.php');
/**
* A word token describing a place type.
*/
class SpecialTerm
{
2018-05-15 00:23:38 +03:00
/// Database word id, if applicable.
public $iId;
2018-05-15 00:23:38 +03:00
/// Class (or OSM tag key) of the place to look for.
public $sClass;
2018-05-15 00:23:38 +03:00
/// Type (or OSM tag value) of the place to look for.
public $sType;
2018-05-15 00:23:38 +03:00
/// Relationship of the operator to the object (see Operator class).
public $iOperator;
public function __construct($iID, $sClass, $sType, $iOperator)
{
$this->iId = $iID;
$this->sClass = $sClass;
$this->sType = $sType;
$this->iOperator = $iOperator;
}
public function debugInfo()
{
return array(
'ID' => $this->iId,
'Type' => 'special term',
'Info' => array(
'class' => $this->sClass,
'type' => $this->sType,
2018-07-17 23:23:27 +03:00
'operator' => \Nominatim\Operator::toString($this->iOperator)
)
);
}
}