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

Class ilBiblData. More...

+ Inheritance diagram for ilBiblData:
+ Collaboration diagram for ilBiblData:

Public Member Functions

 getConnectorContainerName ()
 
 getId ()
 
 setId ($id)
 
 getFilename ()
 
 setFilename ($filename)
 
 getIsOnline ()
 
 setIsOnline ($is_online)
 
 getFileType ()
 
 setFileType ($file_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)
 

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_data'
 
- Data Fields inherited from ActiveRecord
const ACTIVE_RECORD_VERSION = '2.0.7'
 

Protected Attributes

 $id
 
 $filename
 
 $is_online
 
 $file_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

Class ilBiblData.

Author
: Benjamin Seglias bs@st.nosp@m.uder.nosp@m.-raim.nosp@m.ann..nosp@m.ch

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

Member Function Documentation

◆ getConnectorContainerName()

ilBiblData::getConnectorContainerName ( )
Returns
string

Definition at line 23 of file class.ilBiblData.php.

24  {
25  return self::TABLE_NAME;
26  }

◆ getFilename()

ilBiblData::getFilename ( )
Returns
string

Implements ilBiblDataInterface.

Definition at line 93 of file class.ilBiblData.php.

References $filename.

94  {
95  return $this->filename;
96  }

◆ getFileType()

ilBiblData::getFileType ( )
Returns
integer

Implements ilBiblDataInterface.

Definition at line 129 of file class.ilBiblData.php.

References $file_type.

130  {
131  return $this->file_type;
132  }

◆ getId()

ilBiblData::getId ( )
Returns
integer

Implements ilBiblDataInterface.

Definition at line 75 of file class.ilBiblData.php.

References $id.

76  {
77  return $this->id;
78  }

◆ getIsOnline()

ilBiblData::getIsOnline ( )
Returns
integer

Implements ilBiblDataInterface.

Definition at line 111 of file class.ilBiblData.php.

References $is_online.

112  {
113  return $this->is_online;
114  }

◆ returnDbTableName()

static ilBiblData::returnDbTableName ( )
static
Returns
string

Definition at line 15 of file class.ilBiblData.php.

16  {
17  return self::TABLE_NAME;
18  }

◆ setFilename()

ilBiblData::setFilename (   $filename)
Parameters
string$filename

Implements ilBiblDataInterface.

Definition at line 102 of file class.ilBiblData.php.

References $filename.

103  {
104  $this->filename = $filename;
105  }

◆ setFileType()

ilBiblData::setFileType (   $file_type)
Parameters
integer$file_type

Implements ilBiblDataInterface.

Definition at line 138 of file class.ilBiblData.php.

References $file_type.

139  {
140  $this->file_type = $file_type;
141  }

◆ setId()

ilBiblData::setId (   $id)
Parameters
integer$id

Implements ilBiblDataInterface.

Definition at line 84 of file class.ilBiblData.php.

References $id.

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

◆ setIsOnline()

ilBiblData::setIsOnline (   $is_online)
Parameters
integer$is_online

Implements ilBiblDataInterface.

Definition at line 120 of file class.ilBiblData.php.

References $is_online.

121  {
122  $this->is_online = $is_online;
123  }

Field Documentation

◆ $file_type

ilBiblData::$file_type
protected

Definition at line 69 of file class.ilBiblData.php.

Referenced by getFileType(), and setFileType().

◆ $filename

ilBiblData::$filename
protected

Definition at line 49 of file class.ilBiblData.php.

Referenced by getFilename(), and setFilename().

◆ $id

ilBiblData::$id
protected

Definition at line 39 of file class.ilBiblData.php.

Referenced by getId(), and setId().

◆ $is_online

ilBiblData::$is_online
protected

Definition at line 59 of file class.ilBiblData.php.

Referenced by getIsOnline(), and setIsOnline().

◆ TABLE_NAME

const ilBiblData::TABLE_NAME = 'il_bibl_data'

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


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