ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPCLoginPageElement.php
Go to the documentation of this file.
1 <?php
2 
26 {
27  private static array $types = array(
28  'login-form' => 'login_form',
29  'cas-login-form' => 'cas_login_form',
30  'shibboleth-login-form' => 'shib_login_form',
31  'openid-connect-login' => 'openid_connect_login',
32  'registration-link' => 'registration_link',
33  'user-agreement' => 'user_agreement_link',
34  'dpro-agreement' => 'dpro_agreement_link',
35  'saml-login' => 'saml_login'
36  );
37 
41  public static function getAllTypes(): array
42  {
43  return self::$types;
44  }
45 
46  public function init(): void
47  {
48  $this->setType('lpe');
49  }
50 
51  public function create(
52  ilPageObject $a_pg_obj,
53  string $a_hier_id,
54  string $a_pc_id = ""
55  ): void {
56  $this->createInitialChildNode($a_hier_id, $a_pc_id, "LoginPageElement");
57  }
58 
59  public function setLoginPageElementType(string $a_type): void
60  {
61  if (!empty($a_type)) {
62  $this->getChildNode()->setAttribute('Type', $a_type);
63  }
64  }
65 
66  public function getLoginPageElementType(): string
67  {
68  if (is_object($this->getChildNode())) {
69  return $this->getChildNode()->getAttribute('Type');
70  }
71  return "";
72  }
73 
74  public function setAlignment(string $a_alignment): void
75  {
76  $this->getChildNode()->setAttribute('HorizontalAlign', $a_alignment);
77  }
78 
79  public function getAlignment(): string
80  {
81  if (is_object($this->getChildNode())) {
82  return $this->getChildNode()->getAttribute('HorizontalAlign');
83  }
84  return "";
85  }
86 
87  public static function getLangVars(): array
88  {
89  return array("ed_insert_login_page_element");
90  }
91 }
setType(string $a_type)
Set Type.
static getAllTypes()
Get all types.
Content object of ilPageObject (see ILIAS DTD).
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
setAlignment(string $a_alignment)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
createInitialChildNode(string $hier_id, string $pc_id, string $child, array $child_attributes=[])