ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
ModificationFactory.php
Go to the documentation of this file.
2 
9 {
10 
14  public function content() : ContentModification
15  {
16  return new ContentModification();
17  }
18 
19 
23  public function logo() : LogoModification
24  {
25  return new LogoModification;
26  }
27 
28 
32  public function metabar() : MetaBarModification
33  {
34  return new MetaBarModification();
35  }
36 
37 
41  public function mainbar() : MainBarModification
42  {
43  return new MainBarModification();
44  }
45 
46 
51  {
52  return new BreadCrumbsModification();
53  }
54 
55 
59  public function page() : PageBuilderModification
60  {
61  return new PageBuilderModification();
62  }
63 
64 
68  public function footer() : FooterModification
69  {
70  return new FooterModification();
71  }
72 
73  public function title() : TitleModification
74  {
75  return new TitleModification();
76  }
77  public function short_title() : ShortTitleModification
78  {
79  return new ShortTitleModification();
80  }
81  public function view_title() : ViewTitleModification
82  {
83  return new ViewTitleModification();
84  }
85 }