First set of modifications
This commit is contained in:
@@ -4,7 +4,10 @@ require_once ('Base.php');
|
||||
/**
|
||||
* Application Solr Queue
|
||||
*/
|
||||
class Entity_AppSolrQueue extends Entity_Base
|
||||
|
||||
/**
|
||||
* Application Solr Queue
|
||||
*/class Entity_AppSolrQueue extends Entity_Base
|
||||
{
|
||||
public $appUid = '';
|
||||
public $appChangeDate = '';
|
||||
@@ -1,5 +1,6 @@
|
||||
<?php
|
||||
|
||||
|
||||
class Entity_Base
|
||||
{
|
||||
|
||||
@@ -14,7 +14,20 @@ require_once ('Base.php');
|
||||
* @author dev-HebertSaak
|
||||
*
|
||||
*/
|
||||
class Entity_FacetGroup extends Entity_Base
|
||||
|
||||
/**
|
||||
* Facet group entity that represent a facet group
|
||||
*
|
||||
* @property $facetGroupName: The name of the facet (field name in solr index)
|
||||
* @property $facetGroupPrintName: The print name of the facet (Human readable
|
||||
* description)
|
||||
* @property $facetGroupType: The type of facet group, field, daterange, filter,
|
||||
* range
|
||||
* @property $facetGroupId: An identifier to find group information
|
||||
* @property $facetItems: array of facet items
|
||||
* @author dev-HebertSaak
|
||||
*
|
||||
*/class Entity_FacetGroup extends Entity_Base
|
||||
{
|
||||
public $facetGroupName = '';
|
||||
public $facetGroupPrintName = '';
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
require_once ('Base.php');
|
||||
|
||||
|
||||
class Entity_FacetInterfaceRequest extends Entity_Base
|
||||
{
|
||||
public $searchText = '';
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
require_once ('Base.php');
|
||||
|
||||
|
||||
class Entity_FacetInterfaceResult extends Entity_Base
|
||||
{
|
||||
// array of facetsgroups, array of Entity_SelectedFacetGroupItem, filter text
|
||||
@@ -10,7 +10,16 @@ require_once ('Base.php');
|
||||
* @author dev-HebertSaak
|
||||
*
|
||||
*/
|
||||
class Entity_FacetItem extends Entity_Base
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*
|
||||
* Entity Face item, represent an option in a facet group
|
||||
*
|
||||
* @author dev-HebertSaak
|
||||
*
|
||||
*/class Entity_FacetItem extends Entity_Base
|
||||
{
|
||||
public $facetName = '';
|
||||
public $facetPrintName = '';
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
require_once ('Base.php');
|
||||
|
||||
|
||||
class Entity_FacetRequest extends Entity_Base
|
||||
{
|
||||
public $workspace = '';
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
require_once ('Base.php');
|
||||
|
||||
|
||||
class Entity_FacetResult extends Entity_Base
|
||||
{
|
||||
public $aFacetGroups = array ();
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
require_once ('Base.php');
|
||||
|
||||
|
||||
class Entity_SelectedFacetGroupItem extends Entity_Base
|
||||
{
|
||||
public $selectedFacetGroupName = '';
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
require_once ('Base.php');
|
||||
|
||||
|
||||
class Entity_SolrQueryResult extends Entity_Base
|
||||
{
|
||||
public $sEcho = '';
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
require_once ('Base.php');
|
||||
|
||||
|
||||
class Entity_SolrRequestData extends Entity_Base
|
||||
{
|
||||
public $workspace = '';
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
require_once ('Base.php');
|
||||
|
||||
|
||||
class Entity_SolrUpdateDocument extends Entity_Base
|
||||
{
|
||||
var $workspace = '';
|
||||
Reference in New Issue
Block a user