ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ILIAS\Blog\Settings\Settings Class Reference
+ Collaboration diagram for ILIAS\Blog\Settings\Settings:

Public Member Functions

 __construct (protected int $id, protected bool $profile_picture, protected string $bg_color, protected string $font_color, protected bool $rss_active, protected bool $approval, protected bool $abs_shorten, protected int $abs_shorten_len, protected bool $abs_image, protected int $abs_img_width, protected int $abs_img_height, protected bool $keywords, protected bool $authors, protected int $nav_mode, protected int $nav_list_mon_with_post, protected int $nav_list_mon, protected int $ov_post, protected array $nav_order)
 
 getId ()
 
 withId (int $id)
 
 getProfilePicture ()
 
 getBackgroundColor ()
 
 getFontColor ()
 
 getRSS ()
 
 getApproval ()
 
 getAbstractShorten ()
 
 getAbstractShortenLength ()
 
 getAbstractImage ()
 
 getAbstractImageWidth ()
 
 getAbstractImageHeight ()
 
 getKeywords ()
 
 getAuthors ()
 
 getNavMode ()
 
 getNavModeListMonthsWithPostings ()
 
 getNavModeListMonths ()
 
 getOverviewPostings ()
 
 getOrder ()
 

Detailed Description

Definition at line 23 of file Settings.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Blog\Settings\Settings::__construct ( protected int  $id,
protected bool  $profile_picture,
protected string  $bg_color,
protected string  $font_color,
protected bool  $rss_active,
protected bool  $approval,
protected bool  $abs_shorten,
protected int  $abs_shorten_len,
protected bool  $abs_image,
protected int  $abs_img_width,
protected int  $abs_img_height,
protected bool  $keywords,
protected bool  $authors,
protected int  $nav_mode,
protected int  $nav_list_mon_with_post,
protected int  $nav_list_mon,
protected int  $ov_post,
protected array  $nav_order 
)

Definition at line 25 of file Settings.php.

44 {
45 }

Member Function Documentation

◆ getAbstractImage()

ILIAS\Blog\Settings\Settings::getAbstractImage ( )

Definition at line 94 of file Settings.php.

94 : bool
95 {
96 return $this->abs_image;
97 }

◆ getAbstractImageHeight()

ILIAS\Blog\Settings\Settings::getAbstractImageHeight ( )

Definition at line 104 of file Settings.php.

104 : int
105 {
106 return $this->abs_img_height;
107 }

◆ getAbstractImageWidth()

ILIAS\Blog\Settings\Settings::getAbstractImageWidth ( )

Definition at line 99 of file Settings.php.

99 : int
100 {
101 return $this->abs_img_width;
102 }

◆ getAbstractShorten()

ILIAS\Blog\Settings\Settings::getAbstractShorten ( )

Definition at line 84 of file Settings.php.

84 : bool
85 {
86 return $this->abs_shorten;
87 }

◆ getAbstractShortenLength()

ILIAS\Blog\Settings\Settings::getAbstractShortenLength ( )

Definition at line 89 of file Settings.php.

89 : int
90 {
91 return $this->abs_shorten_len;
92 }

◆ getApproval()

ILIAS\Blog\Settings\Settings::getApproval ( )

Definition at line 79 of file Settings.php.

79 : bool
80 {
81 return $this->approval;
82 }

◆ getAuthors()

ILIAS\Blog\Settings\Settings::getAuthors ( )

Definition at line 114 of file Settings.php.

114 : bool
115 {
116 return $this->authors;
117 }

◆ getBackgroundColor()

ILIAS\Blog\Settings\Settings::getBackgroundColor ( )

Definition at line 64 of file Settings.php.

64 : string
65 {
66 return $this->bg_color;
67 }

◆ getFontColor()

ILIAS\Blog\Settings\Settings::getFontColor ( )

Definition at line 69 of file Settings.php.

69 : string
70 {
71 return $this->font_color;
72 }

◆ getId()

ILIAS\Blog\Settings\Settings::getId ( )

Definition at line 47 of file Settings.php.

47 : int
48 {
49 return $this->id;
50 }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23

References $id.

◆ getKeywords()

ILIAS\Blog\Settings\Settings::getKeywords ( )

Definition at line 109 of file Settings.php.

109 : bool
110 {
111 return $this->keywords;
112 }

◆ getNavMode()

ILIAS\Blog\Settings\Settings::getNavMode ( )

Definition at line 119 of file Settings.php.

119 : int
120 {
121 return $this->nav_mode;
122 }

◆ getNavModeListMonths()

ILIAS\Blog\Settings\Settings::getNavModeListMonths ( )

Definition at line 129 of file Settings.php.

129 : int
130 {
131 return $this->nav_list_mon;
132 }

◆ getNavModeListMonthsWithPostings()

ILIAS\Blog\Settings\Settings::getNavModeListMonthsWithPostings ( )

Definition at line 124 of file Settings.php.

124 : int
125 {
126 return $this->nav_list_mon_with_post;
127 }

◆ getOrder()

ILIAS\Blog\Settings\Settings::getOrder ( )

Definition at line 139 of file Settings.php.

139 : array
140 {
141 return $this->nav_order;
142 }

◆ getOverviewPostings()

ILIAS\Blog\Settings\Settings::getOverviewPostings ( )

Definition at line 134 of file Settings.php.

134 : int
135 {
136 return $this->ov_post;
137 }

◆ getProfilePicture()

ILIAS\Blog\Settings\Settings::getProfilePicture ( )

Definition at line 59 of file Settings.php.

59 : bool
60 {
61 return $this->profile_picture;
62 }

◆ getRSS()

ILIAS\Blog\Settings\Settings::getRSS ( )

Definition at line 74 of file Settings.php.

74 : bool
75 {
76 return $this->rss_active;
77 }

◆ withId()

ILIAS\Blog\Settings\Settings::withId ( int  $id)

Definition at line 52 of file Settings.php.

52 : self
53 {
54 $clone = clone $this;
55 $clone->id = $id;
56 return $clone;
57 }

References $id.


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