ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ilBiblFieldFilter Class Reference

Class ilBiblFieldFilter. More...

+ Inheritance diagram for ilBiblFieldFilter:
+ Collaboration diagram for ilBiblFieldFilter:

Public Member Functions

 getConnectorContainerName ()
 
 getId ()
 
 setId ($id)
 
 getFieldId ()
 
 setFieldId ($field_id)
 
 getObjectId ()
 
 setObjectId ($object_id)
 
 getFilterType ()
 
 setFilterType ($filter_type)
 
- Public Member Functions inherited from ActiveRecord
 getArConnector ()
 
 getArFieldList ()
 
 getConnectorContainerName ()
 
 setConnectorContainerName ($connector_container_name)
 
 getPrimaryFieldValue ()
 
 setPrimaryFieldValue ($value)
 
 __construct ($primary_key=0, arConnector $connector=null)
 
 storeObjectToCache ()
 
 __getConvertedDateFieldsAsArray ($format=null)
 
 __asCsv ($separator=';', $header=false)
 
 __asArray ()
 
 __asStdClass ()
 
 __asSerializedObject ()
 
 buildFromArray (array $array)
 
 fixDateField ($field_name, $value)
 
 sleep ($field_name)
 
 wakeUp ($field_name, $field_value)
 
 getArrayForDb ()
 
 getArrayForConnector ()
 
 installConnector ()
 
 store ()
 
 save ()
 
 create ()
 
 copy ($new_id=0)
 
 afterObjectLoad ()
 
 read ()
 
 update ()
 
 delete ()
 
 __call ($name, $arguments)
 
- Public Member Functions inherited from ilBiblFieldFilterInterface
 create ()
 
 update ()
 
 delete ()
 

Static Public Member Functions

static returnDbTableName ()
 
- Static Public Member Functions inherited from ActiveRecord
static returnDbTableName ()
 
static installDB ()
 
static renameDBField ($old_name, $new_name)
 
static tableExists ()
 
static fieldExists ($field_name)
 
static removeDBField ($field_name)
 
static updateDB ()
 
static resetDB ()
 
static truncateDB ()
 
static flushDB ()
 
static preloadObjects ()
 
static additionalParams (array $additional_params)
 
static findOrFail ($primary_key, array $add_constructor_args=array())
 Tries to find the object and throws an Exception if object is not found, instead of returning null. More...
 
static findOrGetInstance ($primary_key, array $add_constructor_args=array())
 
static where ($where, $operator=null)
 
static innerjoinAR (ActiveRecord $ar, $on_this, $on_external, $fields=array(' *'), $operator='=', $both_external=false)
 
static innerjoin ($tablename, $on_this, $on_external, $fields=array(' *'), $operator='=', $both_external=false)
 
static leftjoin ($tablename, $on_this, $on_external, $fields=array(' *'), $operator='=', $both_external=false)
 
static orderBy ($orderBy, $orderDirection='ASC')
 
static dateFormat ($date_format='d.m.Y - H:i:s')
 
static limit ($start, $end)
 
static affectedRows ()
 
static count ()
 
static get ()
 
static debug ()
 
static first ()
 
static getCollection ()
 
static last ()
 
static getFirstFromLastQuery ()
 
static connector (arConnector $connector)
 
static raw ($set_raw=true)
 
static getArray ($key=null, $values=null)
 
static _toCamelCase ($str, $capitalise_first_char=false)
 

Data Fields

const TABLE_NAME = 'il_bibl_filter'
 
- Data Fields inherited from ActiveRecord
const ACTIVE_RECORD_VERSION = '2.0.7'
 
- Data Fields inherited from ilBiblFieldFilterInterface
const FILTER_TYPE_MULTI_SELECT_INPUT = 3
 
const FILTER_TYPE_SELECT_INPUT = 2
 
const FILTER_TYPE_TEXT_INPUT = 1
 

Protected Attributes

 $id
 
 $field_id
 
 $object_id
 
 $filter_type
 
- Protected Attributes inherited from ActiveRecord
 $ar_safe_read = true
 
 $connector_container_name = ''
 

Additional Inherited Members

- Protected Member Functions inherited from ActiveRecord
 serializeToCSV ($field)
 This method is called for every field of your instance if you use __asCsv. More...
 
 installDatabase ()
 
- Static Protected Member Functions inherited from ActiveRecord
static getCalledClass ()
 
static fromCamelCase ($str)
 

Detailed Description

Member Function Documentation

◆ getConnectorContainerName()

ilBiblFieldFilter::getConnectorContainerName ( )
Returns
string

Definition at line 25 of file class.ilBiblFieldFilter.php.

26  {
27  return self::TABLE_NAME;
28  }

◆ getFieldId()

ilBiblFieldFilter::getFieldId ( )
Returns
mixed

Implements ilBiblFieldFilterInterface.

Definition at line 94 of file class.ilBiblFieldFilter.php.

References $field_id.

95  {
96  return $this->field_id;
97  }

◆ getFilterType()

ilBiblFieldFilter::getFilterType ( )
Returns
mixed

Implements ilBiblFieldFilterInterface.

Definition at line 130 of file class.ilBiblFieldFilter.php.

References $filter_type.

131  {
132  return $this->filter_type;
133  }

◆ getId()

ilBiblFieldFilter::getId ( )
Returns
mixed

Implements ilBiblFieldFilterInterface.

Definition at line 76 of file class.ilBiblFieldFilter.php.

References $id.

Referenced by ilBiblFieldFilterTableGUI\addActionMenu().

77  {
78  return $this->id;
79  }
+ Here is the caller graph for this function:

◆ getObjectId()

ilBiblFieldFilter::getObjectId ( )
Returns
mixed

Implements ilBiblFieldFilterInterface.

Definition at line 112 of file class.ilBiblFieldFilter.php.

References $object_id.

113  {
114  return $this->object_id;
115  }

◆ returnDbTableName()

static ilBiblFieldFilter::returnDbTableName ( )
static
Returns
string

Definition at line 16 of file class.ilBiblFieldFilter.php.

17  {
18  return self::TABLE_NAME;
19  }

◆ setFieldId()

ilBiblFieldFilter::setFieldId (   $field_id)
Parameters
mixed$field_id

Implements ilBiblFieldFilterInterface.

Definition at line 103 of file class.ilBiblFieldFilter.php.

References $field_id.

104  {
105  $this->field_id = $field_id;
106  }

◆ setFilterType()

ilBiblFieldFilter::setFilterType (   $filter_type)
Parameters
mixed$filter_type

Implements ilBiblFieldFilterInterface.

Definition at line 139 of file class.ilBiblFieldFilter.php.

References $filter_type.

140  {
141  $this->filter_type = $filter_type;
142  }

◆ setId()

ilBiblFieldFilter::setId (   $id)
Parameters
mixed$id

Implements ilBiblFieldFilterInterface.

Definition at line 85 of file class.ilBiblFieldFilter.php.

References $id.

86  {
87  $this->id = $id;
88  }

◆ setObjectId()

ilBiblFieldFilter::setObjectId (   $object_id)
Parameters
mixed$object_id

Implements ilBiblFieldFilterInterface.

Definition at line 121 of file class.ilBiblFieldFilter.php.

References $object_id.

122  {
123  $this->object_id = $object_id;
124  }

Field Documentation

◆ $field_id

ilBiblFieldFilter::$field_id
protected

Definition at line 52 of file class.ilBiblFieldFilter.php.

Referenced by getFieldId(), and setFieldId().

◆ $filter_type

ilBiblFieldFilter::$filter_type
protected

Definition at line 70 of file class.ilBiblFieldFilter.php.

Referenced by getFilterType(), and setFilterType().

◆ $id

ilBiblFieldFilter::$id
protected

Definition at line 42 of file class.ilBiblFieldFilter.php.

Referenced by getId(), and setId().

◆ $object_id

ilBiblFieldFilter::$object_id
protected

Definition at line 62 of file class.ilBiblFieldFilter.php.

Referenced by getObjectId(), and setObjectId().

◆ TABLE_NAME

const ilBiblFieldFilter::TABLE_NAME = 'il_bibl_filter'

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


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