ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator 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 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.

References null.

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  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null

Member Function Documentation

◆ getClientDescription()

ilSystemFolderSetupConfig::getClientDescription ( )

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

References $client_description.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

130  : ?string
131  {
133  }
+ Here is the caller graph for this function:

◆ getClientInstitution()

ilSystemFolderSetupConfig::getClientInstitution ( )

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

References $client_institution.

135  : ?string
136  {
138  }

◆ getClientName()

ilSystemFolderSetupConfig::getClientName ( )

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

References $client_name.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

125  : ?string
126  {
127  return $this->client_name;
128  }
+ Here is the caller graph for this function:

◆ getContactCity()

ilSystemFolderSetupConfig::getContactCity ( )

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

References $contact_city.

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

◆ getContactCountry()

ilSystemFolderSetupConfig::getContactCountry ( )

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

References $contact_country.

180  : ?string
181  {
182  return $this->contact_country;
183  }

◆ getContactEMail()

ilSystemFolderSetupConfig::getContactEMail ( )

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

References $contact_email.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

190  : string
191  {
192  return $this->contact_email;
193  }
+ Here is the caller graph for this function:

◆ getContactFirstname()

ilSystemFolderSetupConfig::getContactFirstname ( )

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

References $contact_firstname.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

140  : string
141  {
143  }
+ Here is the caller graph for this function:

◆ getContactInstitution()

ilSystemFolderSetupConfig::getContactInstitution ( )

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

References $contact_institution.

160  : ?string
161  {
163  }

◆ getContactLastname()

ilSystemFolderSetupConfig::getContactLastname ( )

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

References $contact_lastname.

Referenced by ilNICKeyRegisteredObjective\getURLStringForNIC().

145  : string
146  {
148  }
+ Here is the caller graph for this function:

◆ getContactPhone()

ilSystemFolderSetupConfig::getContactPhone ( )

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

References $contact_phone.

185  : ?string
186  {
187  return $this->contact_phone;
188  }

◆ getContactPosition()

ilSystemFolderSetupConfig::getContactPosition ( )

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

References $contact_position.

155  : ?string
156  {
158  }

◆ getContactStreet()

ilSystemFolderSetupConfig::getContactStreet ( )

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

References $contact_street.

165  : ?string
166  {
167  return $this->contact_street;
168  }

◆ getContactTitle()

ilSystemFolderSetupConfig::getContactTitle ( )

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

References $contact_title.

150  : ?string
151  {
152  return $this->contact_title;
153  }

◆ getContactZipcode()

ilSystemFolderSetupConfig::getContactZipcode ( )

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

References $contact_zipcode.

170  : ?string
171  {
172  return $this->contact_zipcode;
173  }

Field Documentation

◆ $client_description

ilSystemFolderSetupConfig::$client_description
protected

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

Referenced by getClientDescription().

◆ $client_institution

ilSystemFolderSetupConfig::$client_institution
protected

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

Referenced by getClientInstitution().

◆ $client_name

ilSystemFolderSetupConfig::$client_name
protected

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

Referenced by getClientName().

◆ $contact_city

ilSystemFolderSetupConfig::$contact_city
protected

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

Referenced by getContactCity().

◆ $contact_country

ilSystemFolderSetupConfig::$contact_country
protected

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

Referenced by getContactCountry().

◆ $contact_email

ilSystemFolderSetupConfig::$contact_email
protected

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

Referenced by getContactEMail().

◆ $contact_firstname

ilSystemFolderSetupConfig::$contact_firstname
protected

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

Referenced by getContactFirstname().

◆ $contact_institution

ilSystemFolderSetupConfig::$contact_institution
protected

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

Referenced by getContactInstitution().

◆ $contact_lastname

ilSystemFolderSetupConfig::$contact_lastname
protected

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

Referenced by getContactLastname().

◆ $contact_phone

ilSystemFolderSetupConfig::$contact_phone
protected

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

Referenced by getContactPhone().

◆ $contact_position

ilSystemFolderSetupConfig::$contact_position
protected

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

Referenced by getContactPosition().

◆ $contact_street

ilSystemFolderSetupConfig::$contact_street
protected

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

Referenced by getContactStreet().

◆ $contact_title

ilSystemFolderSetupConfig::$contact_title
protected

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

Referenced by getContactTitle().

◆ $contact_zipcode

ilSystemFolderSetupConfig::$contact_zipcode
protected

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

Referenced by getContactZipcode().


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