ILIAS  trunk Revision v11.0_alpha-1811-gd2d5443e411
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilBiblEntry Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Inheritance diagram for ilBiblEntry:
+ Collaboration diagram for ilBiblEntry:

Public Member Functions

 getConnectorContainerName ()
 
 getId ()
 
 setId (int $id)
 
 getDataId ()
 
 setDataId (int $data_id)
 
 getType ()
 
 setType (string $type)
 
 getOverview ()
 
- Public Member Functions inherited from ActiveRecord
 getArConnector ()
 
 getArFieldList ()
 
 getConnectorContainerName ()
 Return the Name of your Connector Table More...
 
 setConnectorContainerName (string $connector_container_name)
 
 getPrimaryFieldValue ()
 
 setPrimaryFieldValue ($value)
 
 __construct (mixed $primary_key=0)
 
 storeObjectToCache ()
 
 asStdClass ()
 
 asArray ()
 
 buildFromArray (array $array)
 
 fixDateField ($field_name, string $value)
 
 sleep ($field_name)
 
 wakeUp ($field_name, $field_value)
 
 getArrayForConnector ()
 
 installConnector ()
 
 store ()
 
 save ()
 
 create ()
 
 copy (int $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 (string $old_name, string $new_name)
 
static tableExists ()
 
static fieldExists (string $field_name)
 
static removeDBField (string $field_name)
 
static updateDB ()
 
static resetDB ()
 
static truncateDB ()
 
static flushDB ()
 never use in ILIAS Core, Plugins only More...
 
static preloadObjects ()
 
static additionalParams (array $additional_params)
 
static findOrFail ($primary_key, array $add_constructor_args=[])
 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=[])
 
static where ($where, $operator=null)
 
static innerjoinAR (ActiveRecord $activeRecord, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
 
static innerjoin (string $tablename, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
 
static leftjoin (string $tablename, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
 
static orderBy (string $orderBy, string $orderDirection='ASC')
 
static dateFormat (string $date_format='d.m.Y - H:i:s')
 
static limit (int $start, int $end)
 
static affectedRows ()
 
static count ()
 
static get ()
 
static debug ()
 
static first ()
 
static getCollection ()
 
static last ()
 
static getFirstFromLastQuery ()
 
static connector (arConnector $arConnector)
 
static raw (bool $set_raw=true)
 
static getArray (?string $key=null, string|array|null $values=null)
 
static _toCamelCase (string $str, bool $capitalise_first_char=false)
 

Data Fields

const TABLE_NAME = 'il_bibl_entry'
 

Protected Attributes

int $id = null
 true integer 4 true true true true More...
 
int $data_id = null
 true integer 4 More...
 
string $type = null
 true text 50 true More...
 
string $overview = ''
 
- Protected Attributes inherited from ActiveRecord
bool $ar_safe_read = true
 
string $connector_container_name = ''
 
bool $is_new = true
 

Additional Inherited Members

- Protected Member Functions inherited from ActiveRecord
 installDatabase ()
 
- Static Protected Member Functions inherited from ActiveRecord
static getCalledClass ()
 Returns an instance of the instatiated calling active record (needs to be done in static methods) : This should be cached somehow More...
 
static fromCamelCase (string $str)
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Class ilBiblEntry

Author
Gabriel Comte
Fabian Schmid fs@st.nosp@m.uder.nosp@m.-raim.nosp@m.ann..nosp@m.ch

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

Member Function Documentation

◆ getConnectorContainerName()

ilBiblEntry::getConnectorContainerName ( )

Definition at line 33 of file class.ilBiblEntry.php.

33  : string
34  {
35  return self::TABLE_NAME;
36  }

◆ getDataId()

ilBiblEntry::getDataId ( )

Implements ilBiblEntryInterface.

Definition at line 74 of file class.ilBiblEntry.php.

References $data_id.

74  : int
75  {
76  return $this->data_id;
77  }
int $data_id
true integer 4

◆ getId()

ilBiblEntry::getId ( )

Implements ilBiblEntryInterface.

Definition at line 64 of file class.ilBiblEntry.php.

References $id.

Referenced by ilBiblLibraryPresentationGUI\generateLibraryLink().

64  : ?int
65  {
66  return $this->id;
67  }
int $id
true integer 4 true true true true
+ Here is the caller graph for this function:

◆ getOverview()

ilBiblEntry::getOverview ( )

Implements ilBiblEntryInterface.

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

References $overview.

94  : string
95  {
96  return $this->overview;
97  }

◆ getType()

ilBiblEntry::getType ( )

Implements ilBiblEntryInterface.

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

References $type.

Referenced by ilBiblLibraryPresentationGUI\generateLibraryLink().

84  : string
85  {
86  return $this->type;
87  }
string $type
true text 50 true
+ Here is the caller graph for this function:

◆ returnDbTableName()

static ilBiblEntry::returnDbTableName ( )
static

Definition at line 27 of file class.ilBiblEntry.php.

27  : string
28  {
29  return self::TABLE_NAME;
30  }

◆ setDataId()

ilBiblEntry::setDataId ( int  $data_id)

Implements ilBiblEntryInterface.

Definition at line 79 of file class.ilBiblEntry.php.

References $data_id.

79  : void
80  {
81  $this->data_id = $data_id;
82  }
int $data_id
true integer 4

◆ setId()

ilBiblEntry::setId ( int  $id)

Implements ilBiblEntryInterface.

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

References $id.

69  : void
70  {
71  $this->id = $id;
72  }
int $id
true integer 4 true true true true

◆ setType()

ilBiblEntry::setType ( string  $type)

Implements ilBiblEntryInterface.

Definition at line 89 of file class.ilBiblEntry.php.

References $type.

89  : void
90  {
91  $this->type = $type;
92  }
string $type
true text 50 true

Field Documentation

◆ $data_id

int ilBiblEntry::$data_id = null
protected

true integer 4

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

Referenced by getDataId(), and setDataId().

◆ $id

int ilBiblEntry::$id = null
protected

true integer 4 true true true true

Definition at line 47 of file class.ilBiblEntry.php.

Referenced by getId(), and setId().

◆ $overview

string ilBiblEntry::$overview = ''
protected

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

Referenced by getOverview().

◆ $type

string ilBiblEntry::$type = null
protected

true text 50 true

Definition at line 60 of file class.ilBiblEntry.php.

Referenced by getType(), and setType().

◆ TABLE_NAME

const ilBiblEntry::TABLE_NAME = 'il_bibl_entry'

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