6 include_once
"./Services/Xml/classes/class.ilXmlWriter.php";
22 parent::ilXmlWriter();
31 $this->settings = $settings;
49 public function end() {
64 $this->
xmlSetDtdDef(
"<!DOCTYPE Installation PUBLIC \"-//ILIAS//DTD Group//EN\" \"".$httpPath .
"/xml/ilias_client_3_10.dtd\">");
89 $skin_styles = array();
90 include_once(
"./Services/Style/classes/class.ilStyleDefinition.php");
92 include_once(
"./Services/Style/classes/class.ilObjStyleSettings.php");
93 $templates = $styleDefinition->getAllTemplates();
95 if (is_array($templates))
98 foreach($templates as $template)
102 $styleDef->startParsing();
103 $styles = $styleDef->getStyles();
105 foreach($styles as $style)
111 $skin_styles [] = $template[
"id"].
":".$style[
"id"];
116 include_once(
'Services/Calendar/classes/class.ilTimeZone.php');
121 "inst_id" => $setting->get(
"inst_id"),
122 "id" => $setting->clientid,
123 "enabled" => $setting->access == 1 ?
"TRUE" :
"FALSE",
124 "default_lang" => $setting->language,
138 $auth_mode_names = array();
139 foreach ($auth_modes as $mode) {
144 $this->
xmlElement (
"Name", null, $setting->get(
"inst_name"));
145 $this->
xmlElement (
"Description", null, $setting->description);
146 $this->
xmlElement (
"Institution", null, $setting->get(
"inst_institution"));
148 $this->
xmlElement (
"Firstname", null, $setting->get(
"admin_firstname"));
149 $this->
xmlElement (
"Lastname", null, $setting->get(
"admin_lastname"));
150 $this->
xmlElement (
"Title", null, $setting->get(
"admin_title"));
151 $this->
xmlElement (
"Institution", null, $setting->get(
"admin_institution"));
152 $this->
xmlElement (
"Position", null, $setting->get(
"admin_position"));
153 $this->
xmlElement (
"Email", null, $setting->get(
"admin_email"));
154 $this->
xmlElement (
"Street ", null, $setting->get(
"admin_street"));
155 $this->
xmlElement (
"ZipCode ", null, $setting->get(
"admin_zipcode"));
156 $this->
xmlElement (
"City", null, $setting->get(
"admin_city"));
157 $this->
xmlElement (
"Country", null, $setting->get(
"admin_country"));
158 $this->
xmlElement (
"Phone", null, $setting->get(
"admin_phone"));
161 $this->
xmlElement(
"Setting", array(
"key" =>
"error_recipient"), $setting->get(
"error_recipient"));
162 $this->
xmlElement(
"Setting", array(
"key" =>
"feedback_recipient"), $setting->get(
"feedback_recipient"));
163 $this->
xmlElement(
"Setting", array(
"key" =>
"session_expiration"), $setting->session);
164 $this->
xmlElement(
"Setting", array(
"key" =>
"soap_enabled"), $setting->get(
"soap_user_administration"));
165 $this->
xmlElement(
"Setting", array(
"key" =>
"authentication_methods"), join(
",", $auth_mode_names));
166 $this->
xmlElement(
"Setting", array(
"key" =>
"authentication_default_method"), $auth_mode_default);
167 $this->
xmlElement(
"Setting", array(
"key" =>
"skins"), join(
",", $skin_styles));
168 $this->
xmlElement(
"Setting", array(
"key" =>
"default_skin"), $setting->default_skin_style);
170 $this->
xmlElement(
"Setting", array(
"key" =>
"default_hits_per_page"), $setting->default_hits_per_page);
171 $this->
xmlElement(
"Setting", array(
"key" =>
"default_show_users_online"), $setting->default_show_users_online);
174 if ($this->exportAdvMDDefs)
177 include_once
'Services/AdvancedMetaData/classes/class.ilAdvancedMDRecord.php';
178 include_once
'Services/AdvancedMetaData/classes/class.ilAdvancedMDRecordXMLWriter.php';
180 $record_ids = array();
183 foreach($record_types as $type) {
186 $record_ids [] = $record->getRecordId();
189 $record_ids = array_unique($record_ids);
192 if (count($record_ids) > 0)
194 foreach($record_ids as $record_id)
196 $record_obj = ilAdvancedMDRecord::_getInstanceByrecordId($record_id);
197 $record_obj->toXML($this);
200 $this->
xmlEndTag(
'AdvancedMetaDataRecords');
203 if ($this->exportUDFDefs)
206 include_once (
"./Services/User/classes/class.ilUserDefinedFields.php");
208 $udf_data->addToXML($this);
218 $this->
xmlElement(
"Setting", array(
"key" =>
"default_client"),
$GLOBALS[
'ilIliasIniFile']->readVariable(
"clients",
"default"));
219 #$this->xmlElement("Setting", array("key" => "post_max_size"), ilSoapAdministration::return_bytes(ini_get("post_max_size"))); 220 #$this->xmlElement("Setting", array("key" => "upload_max_filesize"), ilSoapAdministration::return_bytes(ini_get("upload_max_filesize"))); 230 $this->exportAdvMDDefs = $value ? true :
false;
241 $this->exportUDFDefs = $value ?
true:
false;
static _getDefaultTimeZone()
Calculate and set default time zone.
setExportUDFDefinitions($value)
write access, if set to true, user defined field definitions will be exported as well ...
xmlSetGenCmt($genCmt)
Sets generated comment.
xmlSetDtdDef($dtdDef)
Sets dtd definition.
_lookupActivatedStyle($a_skin, $a_style)
lookup if a style is activated
__buildClient($setting)
create client tag
xmlStartTag($tag, $attrs=NULL, $empty=FALSE, $encode=TRUE, $escape=TRUE)
Writes a starttag.
xmlElement($tag, $attrs=NULL, $data=Null, $encode=TRUE, $escape=TRUE)
Writes a basic element (no children, just textual content)
static _getActivatedRecordsByObjectType($a_obj_type, $a_sub_type="")
Get activated records by object type.
static _getAuthModeName($a_auth_key)
xmlEndTag($tag)
Writes an endtag.
setSettings($settings)
write access to property settings
static buildHTTPPath()
builds http path if no client is available
xmlHeader()
Writes xml header public.
setExportAdvancedMetaDataDefinitions($value)
write access, if set to true advanced meta data definitions will be exported s well ...
static _getAssignableObjectTypes($a_include_text=false)
Get assignable object type.
parses the template.xml that defines all styles of the current template
ilSoapInstallationInfoXMLWriter()
constructor
xmlDumpMem($format=TRUE)
Returns xml document from memory.
__buildInstallationInfo()