ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilADTSearchBridgeRange Class Reference
+ Inheritance diagram for ilADTSearchBridgeRange:
+ Collaboration diagram for ilADTSearchBridgeRange:

Public Member Functions

 getLowerADT ()
 Get lower ADT.
 getUpperADT ()
 Get lower ADT.
 isNull ()
 Is null ?
 isValid ()
 validate ()
 Validate current data.
- Public Member Functions inherited from ilADTSearchBridge
 __construct (ilADTDefinition $a_adt_def)
 Constructor.
 setForm (ilPropertyFormGUI $a_form)
 Set form.
 getForm ()
 Get form.
 setElementId ($a_value)
 Set element id (aka form field)
 getElementId ()
 Get element id.
 setTitle ($a_value)
 Set title (aka form field caption)
 getTitle ()
 Get title.
 setTableGUI (ilTable2GUI $a_table)
 Set table gui (for filter mode)
 getTableGUI ()
 Get table gui.
 loadFilter ()
 Load filter value(s) into ADT.
 addToForm ()
 Add ADT-specific fields to form.
 importFromPost (array $a_post=null)
 Import values from (search) form request POST data.
 getSQLCondition ($a_element_id)
 Get SQL condition for current value(s)
 isInCondition (ilADT $a_adt)
 Compare directly against ADT.
 getSerializedValue ()
 Get current value(s) in serialized form (for easy persisting)
 setSerializedValue ($a_value)
 Set current value(s) in serialized form (for easy persisting)

Protected Member Functions

 setDefinition (ilADTDefinition $a_adt_def)
 Set ADT definition.
- Protected Member Functions inherited from ilADTSearchBridge
 isValidADTDefinition (ilADTDefinition $a_adt_def)
 Check if given ADT definition is valid.
 writeFilter ($a_value=null)
 Write value(s) to filter store (in session)
 readFilter ()
 Load value(s) from filter store (in session)
 addToParentElement (ilFormPropertyGUI $a_field)
 Add form field to parent element.
 addToElementId ($a_add)
 Add sub-element.
 shouldBeImportedFromPost ($a_post)
 Check if incoming values should be imported at all.
 extractPostValues (array $a_post=null)
 Extract data from (post) values.

Protected Attributes

 $adt_lower
 $adt_upper
- Protected Attributes inherited from ilADTSearchBridge
 $form
 $table_gui
 $table_filter_fields
 $id
 $title
 $info

Detailed Description

Definition at line 5 of file class.ilADTSearchBridgeRange.php.

Member Function Documentation

ilADTSearchBridgeRange::isValid ( )

Definition at line 48 of file class.ilADTSearchBridgeRange.php.

References getLowerADT(), and getUpperADT().

Referenced by ilADTDateSearchBridgeRange\getSerializedValue(), ilADTDateTimeSearchBridgeRange\getSerializedValue(), ilADTDateTimeSearchBridgeRange\getSQLCondition(), ilADTDateSearchBridgeRange\getSQLCondition(), and validate().

{
return ($this->getLowerADT()->isValid() && $this->getUpperADT()->isValid());
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilADTSearchBridgeRange::setDefinition ( ilADTDefinition  $a_adt_def)
protected

Set ADT definition.

Parameters
ilADTDefinition$a_adt_def

Reimplemented from ilADTSearchBridge.

Definition at line 10 of file class.ilADTSearchBridgeRange.php.

References ilADTFactory\getInstance(), and ilADTSearchBridge\isValidADTDefinition().

{
if($this->isValidADTDefinition($a_adt_def))
{
$this->adt_lower = $factory->getInstanceByDefinition($a_adt_def);
$this->adt_upper = $factory->getInstanceByDefinition($a_adt_def);
return;
}
throw new Exception('ilADTSearchBridge type mismatch.');
}

+ Here is the call graph for this function:

ilADTSearchBridgeRange::validate ( )

Validate current data.

Returns
bool

Reimplemented from ilADTSearchBridge.

Definition at line 53 of file class.ilADTSearchBridgeRange.php.

References ilADTSearchBridge\addToElementId(), ilADTSearchBridge\getForm(), getLowerADT(), getUpperADT(), and isValid().

{
if(!$this->isValid())
{
$tmp = array();
$mess = $this->getLowerADT()->getValidationErrors();
foreach($mess as $error_code)
{
$tmp[] = $this->getLowerADT()->translateErrorCode($error_code);
}
if($tmp)
{
$field = $this->getForm()->getItemByPostvar($this->addToElementId("lower"));
$field->setAlert(implode("<br />", $tmp));
}
$tmp = array();
$mess = $this->getUpperADT()->getValidationErrors();
foreach($mess as $error_code)
{
$tmp[] = $this->getUpperADT()->translateErrorCode($error_code);
}
if($tmp)
{
$field = $this->getForm()->getItemByPostvar($this->addToElementId("upper"));
$field->setAlert(implode("<br />", $tmp));
}
return false;
}
return true;
}

+ Here is the call graph for this function:

Field Documentation

ilADTSearchBridgeRange::$adt_lower
protected

Definition at line 7 of file class.ilADTSearchBridgeRange.php.

Referenced by getLowerADT().

ilADTSearchBridgeRange::$adt_upper
protected

Definition at line 8 of file class.ilADTSearchBridgeRange.php.

Referenced by getUpperADT().


The documentation for this class was generated from the following file: