mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
18 lines
439 B
PHP
18 lines
439 B
PHP
<?php
|
|
|
|
class MockValueSetObjects extends ValueSetObjects
|
|
{
|
|
public function __construct($sFilterExp, $sValueAttCode = '', $aOrderBy = array(), $bAllowAllData = false, $aModifierProperties = array())
|
|
{
|
|
parent::__construct($sFilterExp, $sValueAttCode , $aOrderBy, $bAllowAllData, $aModifierProperties );
|
|
}
|
|
public function GetFilterOQL(
|
|
$sOperation, $sContains
|
|
)
|
|
{
|
|
|
|
return $this->GetFilter($sOperation, $sContains)->ToOQL();
|
|
|
|
}
|
|
}
|