41 lines
936 B
PHP
41 lines
936 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class EntityFacetInterfaceRequest extends EntityBase
|
||
|
|
{
|
||
|
|
public $searchText = '';
|
||
|
|
public $selectedFacetsString = ''; // string of selected facet groups and
|
||
|
|
|
||
|
|
// items in format:
|
||
|
|
// groupkey1::groupdesc1:::itemkey1::itemdesc1,groupkey2::groupdesc2:::itemkey2::itemdesc2,
|
||
|
|
// groupkey3::groupdesc3:::itemkey3::itemdesc3
|
||
|
|
// var $selectedFacetFields = array();
|
||
|
|
// var $selectedFacetTypes = array();
|
||
|
|
|
||
|
|
private function __construct()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
static function createEmpty()
|
||
|
|
{
|
||
|
|
$obj = new EntityFacetInterfaceRequest ();
|
||
|
|
return $obj;
|
||
|
|
}
|
||
|
|
|
||
|
|
static function createForRequest($data)
|
||
|
|
{
|
||
|
|
$obj = new EntityFacetInterfaceRequest ();
|
||
|
|
|
||
|
|
$obj->initializeObject($data);
|
||
|
|
|
||
|
|
$requiredFields = array(
|
||
|
|
"searchText",
|
||
|
|
"selectedFacetsString"
|
||
|
|
);
|
||
|
|
|
||
|
|
$obj->validateRequiredFields($requiredFields);
|
||
|
|
|
||
|
|
return $obj;
|
||
|
|
}
|
||
|
|
}
|