ILIAS  trunk Revision v11.0_alpha-1831-g8615d53dadb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilWebLinkList Class Reference

Immutable class for Web Link lists. More...

+ Inheritance diagram for ilWebLinkList:
+ Collaboration diagram for ilWebLinkList:

Public Member Functions

 __construct (int $webr_id, string $title, ?string $description, DateTimeImmutable $create_date, DateTimeImmutable $last_update)
 
 getWebrId ()
 
 getCreateDate ()
 
 getLastUpdate ()
 
- Public Member Functions inherited from ilWebLinkBaseList
 __construct (string $title, ?string $description)
 
 getTitle ()
 
 getDescription ()
 

Protected Attributes

int $webr_id
 
DateTimeImmutable $create_date
 
DateTimeImmutable $last_update
 
- Protected Attributes inherited from ilWebLinkBaseList
string $title
 
string $description
 

Detailed Description

Immutable class for Web Link lists.

Author
Tim Schmitz schmi.nosp@m.tz@l.nosp@m.eifos.nosp@m..de

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

Constructor & Destructor Documentation

◆ __construct()

ilWebLinkList::__construct ( int  $webr_id,
string  $title,
?string  $description,
DateTimeImmutable  $create_date,
DateTimeImmutable  $last_update 
)

Definition at line 32 of file class.ilWebLinkList.php.

References $create_date, $last_update, $webr_id, and ILIAS\GlobalScreen\Provider\__construct().

38  {
39  $this->webr_id = $webr_id;
40  $this->create_date = $create_date;
41  $this->last_update = $last_update;
43  }
__construct(Container $dic, ilPlugin $plugin)
+ Here is the call graph for this function:

Member Function Documentation

◆ getCreateDate()

ilWebLinkList::getCreateDate ( )

Definition at line 50 of file class.ilWebLinkList.php.

References $create_date.

51  {
52  return $this->create_date;
53  }

◆ getLastUpdate()

ilWebLinkList::getLastUpdate ( )

Definition at line 55 of file class.ilWebLinkList.php.

References $last_update.

56  {
57  return $this->last_update;
58  }

◆ getWebrId()

ilWebLinkList::getWebrId ( )

Definition at line 45 of file class.ilWebLinkList.php.

References $webr_id.

Referenced by ilWebLinkDatabaseRepository\updateList().

45  : int
46  {
47  return $this->webr_id;
48  }
+ Here is the caller graph for this function:

Field Documentation

◆ $create_date

DateTimeImmutable ilWebLinkList::$create_date
protected

Definition at line 29 of file class.ilWebLinkList.php.

Referenced by __construct(), and getCreateDate().

◆ $last_update

DateTimeImmutable ilWebLinkList::$last_update
protected

Definition at line 30 of file class.ilWebLinkList.php.

Referenced by __construct(), and getLastUpdate().

◆ $webr_id

int ilWebLinkList::$webr_id
protected

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

Referenced by __construct(), and getWebrId().


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