First set of modifications

This commit is contained in:
dante
2017-08-11 11:10:27 -04:00
parent 211da8bc50
commit 07f0a36aef
121 changed files with 3366 additions and 2768 deletions

View File

@@ -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 = '';

View File

@@ -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 = '';

View File

@@ -1,6 +1,7 @@
<?php
require_once ('Base.php');
class Entity_FacetInterfaceRequest extends Entity_Base
{
public $searchText = '';

View File

@@ -1,6 +1,7 @@
<?php
require_once ('Base.php');
class Entity_FacetInterfaceResult extends Entity_Base
{
// array of facetsgroups, array of Entity_SelectedFacetGroupItem, filter text

View File

@@ -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 = '';

View File

@@ -1,6 +1,7 @@
<?php
require_once ('Base.php');
class Entity_FacetRequest extends Entity_Base
{
public $workspace = '';

View File

@@ -1,6 +1,7 @@
<?php
require_once ('Base.php');
class Entity_FacetResult extends Entity_Base
{
public $aFacetGroups = array ();

View File

@@ -1,6 +1,7 @@
<?php
require_once ('Base.php');
class Entity_SelectedFacetGroupItem extends Entity_Base
{
public $selectedFacetGroupName = '';

View File

@@ -1,6 +1,7 @@
<?php
require_once ('Base.php');
class Entity_SolrQueryResult extends Entity_Base
{
public $sEcho = '';

View File

@@ -1,6 +1,7 @@
<?php
require_once ('Base.php');
class Entity_SolrRequestData extends Entity_Base
{
public $workspace = '';

View File

@@ -1,6 +1,7 @@
<?php
require_once ('Base.php');
class Entity_SolrUpdateDocument extends Entity_Base
{
var $workspace = '';