ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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 }

References $client_description, $client_institution, $client_name, $contact_city, $contact_country, $contact_email, $contact_firstname, $contact_institution, $contact_lastname, $contact_phone, $contact_position, $contact_street, $contact_title, and $contact_zipcode.

Member Function Documentation

◆ getClientDescription()

ilSystemFolderSetupConfig::getClientDescription ( )

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

116 : ?string
117 {
119 }

References $client_description.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

+ Here is the caller graph for this function:

◆ getClientInstitution()

ilSystemFolderSetupConfig::getClientInstitution ( )

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

121 : ?string
122 {
124 }

References $client_institution.

◆ getClientName()

ilSystemFolderSetupConfig::getClientName ( )

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

111 : ?string
112 {
113 return $this->client_name;
114 }

References $client_name.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

+ Here is the caller graph for this function:

◆ getContactCity()

ilSystemFolderSetupConfig::getContactCity ( )

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

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

References $client_name.

◆ getContactCountry()

ilSystemFolderSetupConfig::getContactCountry ( )

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

166 : ?string
167 {
169 }

References $contact_country.

◆ getContactEMail()

ilSystemFolderSetupConfig::getContactEMail ( )

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

176 : string
177 {
179 }

References $contact_email.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

+ Here is the caller graph for this function:

◆ getContactFirstname()

ilSystemFolderSetupConfig::getContactFirstname ( )

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

126 : string
127 {
129 }

References $contact_firstname.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

+ Here is the caller graph for this function:

◆ getContactInstitution()

ilSystemFolderSetupConfig::getContactInstitution ( )

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

146 : ?string
147 {
149 }

References $contact_institution.

◆ getContactLastname()

ilSystemFolderSetupConfig::getContactLastname ( )

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

131 : string
132 {
134 }

References $contact_lastname.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

+ Here is the caller graph for this function:

◆ getContactPhone()

ilSystemFolderSetupConfig::getContactPhone ( )

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

171 : ?string
172 {
174 }

References $contact_phone.

◆ getContactPosition()

ilSystemFolderSetupConfig::getContactPosition ( )

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

141 : ?string
142 {
144 }

References $contact_position.

◆ getContactStreet()

ilSystemFolderSetupConfig::getContactStreet ( )

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

151 : ?string
152 {
154 }

References $contact_street.

◆ getContactTitle()

ilSystemFolderSetupConfig::getContactTitle ( )

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

136 : ?string
137 {
139 }

References $contact_title.

◆ getContactZipcode()

ilSystemFolderSetupConfig::getContactZipcode ( )

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

156 : ?string
157 {
159 }

References $contact_zipcode.

Field Documentation

◆ $client_description

ilSystemFolderSetupConfig::$client_description
protected

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

Referenced by __construct(), and getClientDescription().

◆ $client_institution

ilSystemFolderSetupConfig::$client_institution
protected

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

Referenced by __construct(), and getClientInstitution().

◆ $client_name

ilSystemFolderSetupConfig::$client_name
protected

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

Referenced by __construct(), getClientName(), and getContactCity().

◆ $contact_city

ilSystemFolderSetupConfig::$contact_city
protected

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

Referenced by __construct().

◆ $contact_country

ilSystemFolderSetupConfig::$contact_country
protected

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

Referenced by __construct(), and getContactCountry().

◆ $contact_email

ilSystemFolderSetupConfig::$contact_email
protected

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

Referenced by __construct(), and getContactEMail().

◆ $contact_firstname

ilSystemFolderSetupConfig::$contact_firstname
protected

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

Referenced by __construct(), and getContactFirstname().

◆ $contact_institution

ilSystemFolderSetupConfig::$contact_institution
protected

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

Referenced by __construct(), and getContactInstitution().

◆ $contact_lastname

ilSystemFolderSetupConfig::$contact_lastname
protected

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

Referenced by __construct(), and getContactLastname().

◆ $contact_phone

ilSystemFolderSetupConfig::$contact_phone
protected

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

Referenced by __construct(), and getContactPhone().

◆ $contact_position

ilSystemFolderSetupConfig::$contact_position
protected

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

Referenced by __construct(), and getContactPosition().

◆ $contact_street

ilSystemFolderSetupConfig::$contact_street
protected

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

Referenced by __construct(), and getContactStreet().

◆ $contact_title

ilSystemFolderSetupConfig::$contact_title
protected

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

Referenced by __construct(), and getContactTitle().

◆ $contact_zipcode

ilSystemFolderSetupConfig::$contact_zipcode
protected

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

Referenced by __construct(), and getContactZipcode().


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