ILIAS  trunk Revision v11.0_alpha-1831-g8615d53dadb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilWebLinkXmlWriter Class Reference

XML writer for weblinks. More...

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

Public Member Functions

 __construct (bool $a_add_header)
 
 setObjId (int $a_obj_id)
 
 write (bool $skip_lom=false)
 
- 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

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.

References ILIAS\GlobalScreen\Provider\__construct().

34  {
35  $this->add_header = $a_add_header;
37  }
__construct(Container $dic, ilPlugin $plugin)
+ Here is the call graph for this function:

Member Function Documentation

◆ buildHeader()

ilWebLinkXmlWriter::buildHeader ( )
protected

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

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

Referenced by write().

58  : bool
59  {
60  $this->xmlSetGenCmt("WebLink Object");
61  $this->xmlHeader();
62  return true;
63  }
xmlSetGenCmt(string $genCmt)
Sets generated comment.
xmlHeader()
Writes xml header.
+ 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 68 of file class.ilWebLinkXmlWriter.php.

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

Referenced by write().

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

References buildHeader(), and init().

47  : void
48  {
49  $this->init();
50  if ($this->add_header) {
51  $this->buildHeader();
52  }
53  $this->weblink->toXML($this, $skip_lom);
54  }
+ 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: