ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilSystemFolderSetupConfig Class Reference
+ Inheritance diagram for ilSystemFolderSetupConfig:
+ Collaboration diagram for ilSystemFolderSetupConfig:

Public Member Functions

 __construct (?string $client_name, ?string $client_description, ?string $client_institution, string $contact_firstname, string $contact_lastname, ?string $contact_title, ?string $contact_position, ?string $contact_institution, ?string $contact_street, ?string $contact_zipcode, ?string $contact_city, ?string $contact_country, ?string $contact_phone, string $contact_email)
 
 getClientName ()
 
 getClientDescription ()
 
 getClientInstitution ()
 
 getContactFirstname ()
 
 getContactLastname ()
 
 getContactTitle ()
 
 getContactPosition ()
 
 getContactInstitution ()
 
 getContactStreet ()
 
 getContactZipcode ()
 
 getContactCity ()
 
 getContactCountry ()
 
 getContactPhone ()
 
 getContactEMail ()
 

Protected Attributes

 $client_name
 
 $client_description
 
 $client_institution
 
 $contact_firstname
 
 $contact_lastname
 
 $contact_title
 
 $contact_position
 
 $contact_institution
 
 $contact_street
 
 $contact_zipcode
 
 $contact_city
 
 $contact_country
 
 $contact_phone
 
 $contact_email
 

Detailed Description

Definition at line 7 of file class.ilSystemFolderSetupConfig.php.

Constructor & Destructor Documentation

◆ __construct()

ilSystemFolderSetupConfig::__construct ( ?string  $client_name,
?string  $client_description,
?string  $client_institution,
string  $contact_firstname,
string  $contact_lastname,
?string  $contact_title,
?string  $contact_position,
?string  $contact_institution,
?string  $contact_street,
?string  $contact_zipcode,
?string  $contact_city,
?string  $contact_country,
?string  $contact_phone,
string  $contact_email 
)

Definition at line 79 of file class.ilSystemFolderSetupConfig.php.

94  {
95  $this->client_name = $client_name ? trim($client_name) : null;
96  $this->client_description = $client_description ? trim($client_description) : null;
97  $this->client_institution = $client_institution ? trim($client_institution) : null;
98  $this->contact_firstname = trim($contact_firstname);
99  $this->contact_lastname = trim($contact_lastname);
100  $this->contact_title = $contact_title ? trim($contact_title) : null;
101  $this->contact_position = $contact_position ? trim($contact_position) : null;
102  $this->contact_institution = $contact_institution ? trim($contact_institution) : null;
103  $this->contact_street = $contact_street ? trim($contact_street) : null;
104  $this->contact_zipcode = $contact_zipcode ? trim($contact_zipcode) : null;
105  $this->contact_city = $contact_city ? trim($contact_city) : null;
106  $this->contact_country = $contact_country ? trim($contact_country) : null;
107  $this->contact_phone = $contact_phone ? trim($contact_phone) : null;
108  $this->contact_email = trim($contact_email);
109  }

Member Function Documentation

◆ getClientDescription()

ilSystemFolderSetupConfig::getClientDescription ( )

Definition at line 116 of file class.ilSystemFolderSetupConfig.php.

References $client_description.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

116  : ?string
117  {
119  }
+ Here is the caller graph for this function:

◆ getClientInstitution()

ilSystemFolderSetupConfig::getClientInstitution ( )

Definition at line 121 of file class.ilSystemFolderSetupConfig.php.

References $client_institution.

121  : ?string
122  {
124  }

◆ getClientName()

ilSystemFolderSetupConfig::getClientName ( )

Definition at line 111 of file class.ilSystemFolderSetupConfig.php.

References $client_name.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

111  : ?string
112  {
113  return $this->client_name;
114  }
+ Here is the caller graph for this function:

◆ getContactCity()

ilSystemFolderSetupConfig::getContactCity ( )

Definition at line 161 of file class.ilSystemFolderSetupConfig.php.

References $contact_city.

161  : ?string
162  {
163  return $this->contact_city;
164  }

◆ getContactCountry()

ilSystemFolderSetupConfig::getContactCountry ( )

Definition at line 166 of file class.ilSystemFolderSetupConfig.php.

References $contact_country.

166  : ?string
167  {
168  return $this->contact_country;
169  }

◆ getContactEMail()

ilSystemFolderSetupConfig::getContactEMail ( )

Definition at line 176 of file class.ilSystemFolderSetupConfig.php.

References $contact_email.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

176  : string
177  {
178  return $this->contact_email;
179  }
+ Here is the caller graph for this function:

◆ getContactFirstname()

ilSystemFolderSetupConfig::getContactFirstname ( )

Definition at line 126 of file class.ilSystemFolderSetupConfig.php.

References $contact_firstname.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

126  : string
127  {
129  }
+ Here is the caller graph for this function:

◆ getContactInstitution()

ilSystemFolderSetupConfig::getContactInstitution ( )

Definition at line 146 of file class.ilSystemFolderSetupConfig.php.

References $contact_institution.

146  : ?string
147  {
149  }

◆ getContactLastname()

ilSystemFolderSetupConfig::getContactLastname ( )

Definition at line 131 of file class.ilSystemFolderSetupConfig.php.

References $contact_lastname.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

131  : string
132  {
134  }
+ Here is the caller graph for this function:

◆ getContactPhone()

ilSystemFolderSetupConfig::getContactPhone ( )

Definition at line 171 of file class.ilSystemFolderSetupConfig.php.

References $contact_phone.

171  : ?string
172  {
173  return $this->contact_phone;
174  }

◆ getContactPosition()

ilSystemFolderSetupConfig::getContactPosition ( )

Definition at line 141 of file class.ilSystemFolderSetupConfig.php.

References $contact_position.

141  : ?string
142  {
144  }

◆ getContactStreet()

ilSystemFolderSetupConfig::getContactStreet ( )

Definition at line 151 of file class.ilSystemFolderSetupConfig.php.

References $contact_street.

151  : ?string
152  {
153  return $this->contact_street;
154  }

◆ getContactTitle()

ilSystemFolderSetupConfig::getContactTitle ( )

Definition at line 136 of file class.ilSystemFolderSetupConfig.php.

References $contact_title.

136  : ?string
137  {
138  return $this->contact_title;
139  }

◆ getContactZipcode()

ilSystemFolderSetupConfig::getContactZipcode ( )

Definition at line 156 of file class.ilSystemFolderSetupConfig.php.

References $contact_zipcode.

156  : ?string
157  {
158  return $this->contact_zipcode;
159  }

Field Documentation

◆ $client_description

ilSystemFolderSetupConfig::$client_description
protected

Definition at line 17 of file class.ilSystemFolderSetupConfig.php.

Referenced by getClientDescription().

◆ $client_institution

ilSystemFolderSetupConfig::$client_institution
protected

Definition at line 22 of file class.ilSystemFolderSetupConfig.php.

Referenced by getClientInstitution().

◆ $client_name

ilSystemFolderSetupConfig::$client_name
protected

Definition at line 12 of file class.ilSystemFolderSetupConfig.php.

Referenced by getClientName().

◆ $contact_city

ilSystemFolderSetupConfig::$contact_city
protected

Definition at line 62 of file class.ilSystemFolderSetupConfig.php.

Referenced by getContactCity().

◆ $contact_country

ilSystemFolderSetupConfig::$contact_country
protected

Definition at line 67 of file class.ilSystemFolderSetupConfig.php.

Referenced by getContactCountry().

◆ $contact_email

ilSystemFolderSetupConfig::$contact_email
protected

Definition at line 77 of file class.ilSystemFolderSetupConfig.php.

Referenced by getContactEMail().

◆ $contact_firstname

ilSystemFolderSetupConfig::$contact_firstname
protected

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

Referenced by getContactFirstname().

◆ $contact_institution

ilSystemFolderSetupConfig::$contact_institution
protected

Definition at line 47 of file class.ilSystemFolderSetupConfig.php.

Referenced by getContactInstitution().

◆ $contact_lastname

ilSystemFolderSetupConfig::$contact_lastname
protected

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

Referenced by getContactLastname().

◆ $contact_phone

ilSystemFolderSetupConfig::$contact_phone
protected

Definition at line 72 of file class.ilSystemFolderSetupConfig.php.

Referenced by getContactPhone().

◆ $contact_position

ilSystemFolderSetupConfig::$contact_position
protected

Definition at line 42 of file class.ilSystemFolderSetupConfig.php.

Referenced by getContactPosition().

◆ $contact_street

ilSystemFolderSetupConfig::$contact_street
protected

Definition at line 52 of file class.ilSystemFolderSetupConfig.php.

Referenced by getContactStreet().

◆ $contact_title

ilSystemFolderSetupConfig::$contact_title
protected

Definition at line 37 of file class.ilSystemFolderSetupConfig.php.

Referenced by getContactTitle().

◆ $contact_zipcode

ilSystemFolderSetupConfig::$contact_zipcode
protected

Definition at line 57 of file class.ilSystemFolderSetupConfig.php.

Referenced by getContactZipcode().


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