ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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 21 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 93 of file class.ilSystemFolderSetupConfig.php.

108 {
109 $this->client_name = $client_name ? trim($client_name) : null;
110 $this->client_description = $client_description ? trim($client_description) : null;
111 $this->client_institution = $client_institution ? trim($client_institution) : null;
112 $this->contact_firstname = trim($contact_firstname);
113 $this->contact_lastname = trim($contact_lastname);
114 $this->contact_title = $contact_title ? trim($contact_title) : null;
115 $this->contact_position = $contact_position ? trim($contact_position) : null;
116 $this->contact_institution = $contact_institution ? trim($contact_institution) : null;
117 $this->contact_street = $contact_street ? trim($contact_street) : null;
118 $this->contact_zipcode = $contact_zipcode ? trim($contact_zipcode) : null;
119 $this->contact_city = $contact_city ? trim($contact_city) : null;
120 $this->contact_country = $contact_country ? trim($contact_country) : null;
121 $this->contact_phone = $contact_phone ? trim($contact_phone) : null;
122 $this->contact_email = trim($contact_email);
123 }

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 130 of file class.ilSystemFolderSetupConfig.php.

130 : ?string
131 {
133 }

References $client_description.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

+ Here is the caller graph for this function:

◆ getClientInstitution()

ilSystemFolderSetupConfig::getClientInstitution ( )

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

135 : ?string
136 {
138 }

References $client_institution.

◆ getClientName()

ilSystemFolderSetupConfig::getClientName ( )

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

125 : ?string
126 {
127 return $this->client_name;
128 }

References $client_name.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

+ Here is the caller graph for this function:

◆ getContactCity()

ilSystemFolderSetupConfig::getContactCity ( )

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

175 : ?string
176 {
177 return $this->contact_city;
178 }

References $contact_city.

◆ getContactCountry()

ilSystemFolderSetupConfig::getContactCountry ( )

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

180 : ?string
181 {
183 }

References $contact_country.

◆ getContactEMail()

ilSystemFolderSetupConfig::getContactEMail ( )

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

190 : string
191 {
193 }

References $contact_email.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

+ Here is the caller graph for this function:

◆ getContactFirstname()

ilSystemFolderSetupConfig::getContactFirstname ( )

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

140 : string
141 {
143 }

References $contact_firstname.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

+ Here is the caller graph for this function:

◆ getContactInstitution()

ilSystemFolderSetupConfig::getContactInstitution ( )

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

160 : ?string
161 {
163 }

References $contact_institution.

◆ getContactLastname()

ilSystemFolderSetupConfig::getContactLastname ( )

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

145 : string
146 {
148 }

References $contact_lastname.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

+ Here is the caller graph for this function:

◆ getContactPhone()

ilSystemFolderSetupConfig::getContactPhone ( )

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

185 : ?string
186 {
188 }

References $contact_phone.

◆ getContactPosition()

ilSystemFolderSetupConfig::getContactPosition ( )

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

155 : ?string
156 {
158 }

References $contact_position.

◆ getContactStreet()

ilSystemFolderSetupConfig::getContactStreet ( )

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

165 : ?string
166 {
168 }

References $contact_street.

◆ getContactTitle()

ilSystemFolderSetupConfig::getContactTitle ( )

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

150 : ?string
151 {
153 }

References $contact_title.

◆ getContactZipcode()

ilSystemFolderSetupConfig::getContactZipcode ( )

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

170 : ?string
171 {
173 }

References $contact_zipcode.

Field Documentation

◆ $client_description

ilSystemFolderSetupConfig::$client_description
protected

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

Referenced by __construct(), and getClientDescription().

◆ $client_institution

ilSystemFolderSetupConfig::$client_institution
protected

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

Referenced by __construct(), and getClientInstitution().

◆ $client_name

ilSystemFolderSetupConfig::$client_name
protected

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

Referenced by __construct(), and getClientName().

◆ $contact_city

ilSystemFolderSetupConfig::$contact_city
protected

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

Referenced by __construct(), and getContactCity().

◆ $contact_country

ilSystemFolderSetupConfig::$contact_country
protected

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

Referenced by __construct(), and getContactCountry().

◆ $contact_email

ilSystemFolderSetupConfig::$contact_email
protected

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

Referenced by __construct(), and getContactEMail().

◆ $contact_firstname

ilSystemFolderSetupConfig::$contact_firstname
protected

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

Referenced by __construct(), and getContactFirstname().

◆ $contact_institution

ilSystemFolderSetupConfig::$contact_institution
protected

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

Referenced by __construct(), and getContactInstitution().

◆ $contact_lastname

ilSystemFolderSetupConfig::$contact_lastname
protected

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

Referenced by __construct(), and getContactLastname().

◆ $contact_phone

ilSystemFolderSetupConfig::$contact_phone
protected

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

Referenced by __construct(), and getContactPhone().

◆ $contact_position

ilSystemFolderSetupConfig::$contact_position
protected

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

Referenced by __construct(), and getContactPosition().

◆ $contact_street

ilSystemFolderSetupConfig::$contact_street
protected

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

Referenced by __construct(), and getContactStreet().

◆ $contact_title

ilSystemFolderSetupConfig::$contact_title
protected

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

Referenced by __construct(), and getContactTitle().

◆ $contact_zipcode

ilSystemFolderSetupConfig::$contact_zipcode
protected

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

Referenced by __construct(), and getContactZipcode().


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