ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.InternalDataService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Blog;
22 
27 {
28  // protected ...\DataFactory ..._factory;
29 
30  public function __construct()
31  {
32  //$this->..._factory = new ...\DataFactory();
33  }
34 
35  public function settings(
36  int $id,
37  bool $profile_picture,
38  string $bg_color,
39  string $font_color,
40  bool $rss_active,
41  bool $approval,
42  bool $abs_shorten,
43  int $abs_shorten_len,
44  bool $abs_image,
45  int $abs_img_width,
46  int $abs_img_height,
47  bool $keywords,
48  bool $authors,
49  int $nav_mode,
50  int $nav_list_mon_with_post,
51  int $nav_list_mon,
52  int $ov_post,
53  array $nav_order = []
54  ): Settings\Settings {
55  return new Settings\Settings(
56  $id,
57  $profile_picture,
58  $bg_color,
59  $font_color,
60  $rss_active,
61  $approval,
62  $abs_shorten,
63  $abs_shorten_len,
64  $abs_image,
65  $abs_img_width,
66  $abs_img_height,
67  $keywords,
68  $authors,
69  $nav_mode,
70  $nav_list_mon_with_post,
71  $nav_list_mon,
72  $ov_post,
73  $nav_order
74  );
75  }
76 }
settings(int $id, bool $profile_picture, string $bg_color, string $font_color, bool $rss_active, bool $approval, bool $abs_shorten, int $abs_shorten_len, bool $abs_image, int $abs_img_width, int $abs_img_height, bool $keywords, bool $authors, int $nav_mode, int $nav_list_mon_with_post, int $nav_list_mon, int $ov_post, array $nav_order=[])
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23