ILIAS  release_8 Revision v8.24
ilWebLinkXmlWriter Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Inheritance diagram for ilWebLinkXmlWriter:
+ Collaboration diagram for ilWebLinkXmlWriter:

Public Member Functions

 __construct (bool $a_add_header)
 
 setObjId (int $a_obj_id)
 
 write ()
 
- Public Member Functions inherited from ilXmlWriter
 __construct (string $version="1.0", string $outEnc="utf-8", string $inEnc="utf-8")
 
 xmlSetDtdDef (string $dtdDef)
 Sets dtd definition. More...
 
 xmlSetGenCmt (string $genCmt)
 Sets generated comment. More...
 
 xmlFormatData (string $data)
 Indents text for better reading. More...
 
 xmlHeader ()
 Writes xml header. More...
 
 xmlStartTag (string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
 Writes a starttag. More...
 
 xmlEndTag (string $tag)
 Writes an endtag. More...
 
 xmlData (string $data, bool $encode=true, bool $escape=true)
 Writes data. More...
 
 xmlElement (string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
 Writes a basic element (no children, just textual content) More...
 
 xmlDumpFile (string $file, bool $format=true)
 Dumps xml document from memory into a file. More...
 
 xmlDumpMem (bool $format=true)
 Returns xml document from memory. More...
 
 appendXML (string $a_str)
 append xml string to document More...
 
 xmlClear ()
 clears xmlStr More...
 

Protected Member Functions

 buildHeader ()
 
 init ()
 

Private Attributes

bool $add_header = true
 
int $obj_id = 0
 
ilObjLinkResource $weblink = null
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning XML writer for weblinks

Author
Stefan Meyer smeye.nosp@m.r.il.nosp@m.ias@g.nosp@m.mx.d.nosp@m.e

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

Constructor & Destructor Documentation

◆ __construct()

ilWebLinkXmlWriter::__construct ( bool  $a_add_header)

Definition at line 33 of file class.ilWebLinkXmlWriter.php.

34 {
35 $this->add_header = $a_add_header;
37 }
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc

References ILIAS\GlobalScreen\Provider\__construct().

+ Here is the call graph for this function:

Member Function Documentation

◆ buildHeader()

ilWebLinkXmlWriter::buildHeader ( )
protected

Definition at line 58 of file class.ilWebLinkXmlWriter.php.

58 : bool
59 {
60 $this->xmlSetDtdDef(
61 "<!DOCTYPE WebLinks PUBLIC \"-//ILIAS//DTD WebLinkAdministration//EN\" \"" . ILIAS_HTTP_PATH . "/xml/ilias_weblinks_5_1.dtd\">"
62 );
63 $this->xmlSetGenCmt("WebLink Object");
64 $this->xmlHeader();
65 return true;
66 }
xmlSetGenCmt(string $genCmt)
Sets generated comment.
xmlHeader()
Writes xml header.
xmlSetDtdDef(string $dtdDef)
Sets dtd definition.

References ilXmlWriter\xmlHeader(), ilXmlWriter\xmlSetDtdDef(), and ilXmlWriter\xmlSetGenCmt().

Referenced by write().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ init()

ilWebLinkXmlWriter::init ( )
protected
Exceptions
UnexpectedValueExceptionThrown if obj_id is not of type webr

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

71 : void
72 {
73 $this->xmlClear();
74
75 if (!$this->obj_id) {
76 throw new UnexpectedValueException('No obj_id given: ');
77 }
78 if (!$this->weblink = ilObjectFactory::getInstanceByObjId(
79 $this->obj_id,
80 false
81 )) {
82 throw new UnexpectedValueException(
83 'Invalid obj_id given: ' . $this->obj_id
84 );
85 }
86 if ($this->weblink->getType() != 'webr') {
87 throw new UnexpectedValueException(
88 'Invalid obj_id given. Object is not of type webr'
89 );
90 }
91 }
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
xmlClear()
clears xmlStr

References ilObjectFactory\getInstanceByObjId(), and ilXmlWriter\xmlClear().

Referenced by write().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setObjId()

ilWebLinkXmlWriter::setObjId ( int  $a_obj_id)

Definition at line 39 of file class.ilWebLinkXmlWriter.php.

39 : void
40 {
41 $this->obj_id = $a_obj_id;
42 }

◆ write()

ilWebLinkXmlWriter::write ( )
Exceptions
UnexpectedValueExceptionThrown if obj_id is not of type webr or no obj_id is given

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

47 : void
48 {
49 $this->init();
50 if ($this->add_header) {
51 $this->buildHeader();
52 }
53 $this->weblink->toXML($this);
54 }

References buildHeader(), and init().

+ Here is the call graph for this function:

Field Documentation

◆ $add_header

bool ilWebLinkXmlWriter::$add_header = true
private

Definition at line 28 of file class.ilWebLinkXmlWriter.php.

◆ $obj_id

int ilWebLinkXmlWriter::$obj_id = 0
private

Definition at line 30 of file class.ilWebLinkXmlWriter.php.

◆ $weblink

ilObjLinkResource ilWebLinkXmlWriter::$weblink = null
private

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


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