ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilGlossaryDefinition Class Reference

Class ilGlossaryDefinition. More...

+ Collaboration diagram for ilGlossaryDefinition:

Public Member Functions

 ilGlossaryDefinition ($a_id=0)
 Constructor public.
 read ()
 read data of content object
 setId ($a_id)
 getId ()
 getType ()
 setTermId ($a_term_id)
 getTermId ()
 setShortText ($a_text)
 getShortText ()
 setNr ($a_nr)
 getNr ()
 assignPageObject (&$a_page_object)
getPageObject ()
 getTitle ()
 get title of content object
 setTitle ($a_title)
 set title of content object
 getDescription ()
 get description of content object
 setDescription ($a_description)
 set description of content object
 create ($a_upload=false)
 delete ()
 moveUp ()
 moveDown ()
 update ()
 shortenShortText ($text)
 Shorten short text.
 updateShortText ()
 getDefinitionList ($a_term_id)
 static
 exportXML (&$a_xml_writer, $a_inst)
 export xml
 exportXMLMetaData (&$a_xml_writer)
 export content objects meta data to xml (see ilias_co.dtd)
 modifyExportIdentifier ($a_tag, $a_param, $a_value)
 exportXMLDefinition (&$a_xml_writer, $a_inst=0)
 export page objects meta data to xml (see ilias_co.dtd)
 createMetaData ()
 create meta data entry
 updateMetaData ()
 update meta data entry
 deleteMetaData ()
 delete meta data entry
 MDUpdateListener ($a_element)
 Meta data update listener.
 _lookupTermId ($a_def_id)
 Looks up term id for a definition id.

Data Fields

 $ilias
 $lng
 $tpl
 $id
 $term_id
 $glo_id
 $page_object
 $short_text
 $nr

Detailed Description

Class ilGlossaryDefinition.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
Id:
class.ilGlossaryDefinition.php 21866 2009-09-23 14:47:13Z smeyer

Definition at line 14 of file class.ilGlossaryDefinition.php.

Member Function Documentation

ilGlossaryDefinition::_lookupTermId (   $a_def_id)

Looks up term id for a definition id.

Parameters
int$a_def_iddefinition id

Definition at line 593 of file class.ilGlossaryDefinition.php.

References $ilDB, and $q.

Referenced by ilMediaPoolPageUsagesTableGUI\fillRow(), ilMediaObjectUsagesTableGUI\fillRow(), ilObjMediaObject\getParentObjectIdForUsage(), and ilLMContentSearch\performSearch().

{
global $ilDB;
$q = "SELECT * FROM glossary_definition WHERE id = ".
$ilDB->quote($a_def_id, "integer");
$def_set = $ilDB->query($q);
$def_rec = $ilDB->fetchAssoc($def_set);
return $def_rec["term_id"];
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::assignPageObject ( $a_page_object)

Definition at line 110 of file class.ilGlossaryDefinition.php.

{
$this->page_object =& $a_page_object;
}
ilGlossaryDefinition::create (   $a_upload = false)

Definition at line 156 of file class.ilGlossaryDefinition.php.

References $ilDB, $q, createMetaData(), getId(), getTermId(), ilDB\LOCK_WRITE, setId(), and setNr().

{
global $ilDB;
$term =& new ilGlossaryTerm($this->getTermId());
$this->setId($ilDB->nextId("glossary_definition"));
// lock glossary_definition table
$ilDB->lockTables(
array(
0 => array('name' => 'glossary_definition', 'type' => ilDB::LOCK_WRITE)));
// get maximum definition number
$q = "SELECT max(nr) AS max_nr FROM glossary_definition WHERE term_id = ".
$ilDB->quote($this->getTermId(), "integer");
$max_set = $ilDB->query($q);
$max_rec = $ilDB->fetchAssoc($max_set);
$max = (int) $max_rec["max_nr"];
// insert new definition record
$ilDB->manipulate("INSERT INTO glossary_definition (id, term_id, short_text, nr)".
" VALUES (".
$ilDB->quote($this->getId(), "integer").",".
$ilDB->quote($this->getTermId(), "integer").",".
$ilDB->quote($this->getShortText(), "text").", ".
$ilDB->quote(($max + 1), "integer").")");
// unlock glossary definition table
$ilDB->unlockTables();
// get number
$q = "SELECT nr FROM glossary_definition WHERE id = ".
$ilDB->quote($this->id, "integer");
$def_set = $ilDB->query($q);
$def_rec = $ilDB->fetchAssoc($def_set);
$this->setNr($def_rec["nr"]);
// meta data will be created by
// import parser
if (!$a_upload)
{
$this->createMetaData();
}
$this->page_object =& new ilPageObject("gdf");
$this->page_object->setId($this->getId());
$this->page_object->setParentId($term->getGlossaryId());
$this->page_object->create();
}

+ Here is the call graph for this function:

ilGlossaryDefinition::createMetaData ( )

create meta data entry

Definition at line 486 of file class.ilGlossaryDefinition.php.

References $glo_id, $lang, ilGlossaryTerm\_lookGlossaryID(), ilGlossaryTerm\_lookLanguage(), getDescription(), getId(), getTermId(), getTitle(), and getType().

Referenced by create().

{
include_once 'Services/MetaData/classes/class.ilMDCreator.php';
global $ilUser;
$md_creator = new ilMDCreator($glo_id,$this->getId(),$this->getType());
$md_creator->setTitle($this->getTitle());
$md_creator->setTitleLanguage($lang);
$md_creator->setDescription($this->getDescription());
$md_creator->setDescriptionLanguage($lang);
$md_creator->setKeywordLanguage($lang);
$md_creator->setLanguage($lang);
$md_creator->create();
return true;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilGlossaryDefinition::delete ( )

Definition at line 207 of file class.ilGlossaryDefinition.php.

References $ilDB, $q, deleteMetaData(), ilDB\LOCK_WRITE, and setNr().

{
global $ilDB;
// lock glossary_definition table
#ilDB::_lockTables(array('glossary_definition' => 'WRITE'));
$ilDB->lockTables(
array(
0 => array('name' => 'glossary_definition', 'type' => ilDB::LOCK_WRITE)));
// be sure to get the right number
$q = "SELECT * FROM glossary_definition WHERE id = ".
$ilDB->quote($this->id, "integer");
$def_set = $ilDB->query($q);
$def_rec = $ilDB->fetchAssoc($def_set);
$this->setNr($def_rec["nr"]);
// update numbers of other definitions
$ilDB->manipulate("UPDATE glossary_definition SET ".
" nr = nr - 1 ".
" WHERE term_id = ".$ilDB->quote($this->getTermId(), "integer")." ".
" AND nr > ".$ilDB->quote($this->getNr(), "integer"));
// delete current definition
$ilDB->manipulate("DELETE FROM glossary_definition ".
" WHERE id = ".$ilDB->quote($this->getId(), "integer"));
// unlock glossary_definition table
$ilDB->unlockTables();
// delete page and meta data
$this->page_object->delete();
// delete meta data
$this->deleteMetaData();
/*
$nested = new ilNestedSetXML();
$nested->init($this->getId(), $this->getType());
$nested->deleteAllDBData();
*/
}

+ Here is the call graph for this function:

ilGlossaryDefinition::deleteMetaData ( )

delete meta data entry

Definition at line 534 of file class.ilGlossaryDefinition.php.

References $glo_id, ilGlossaryTerm\_lookGlossaryID(), getId(), getTermId(), and getType().

Referenced by delete().

{
// Delete meta data
include_once('Services/MetaData/classes/class.ilMD.php');
$md = new ilMD($glo_id, $this->getId(), $this->getType());
$md->deleteAll();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilGlossaryDefinition::exportXML ( $a_xml_writer,
  $a_inst 
)

export xml

Definition at line 421 of file class.ilGlossaryDefinition.php.

References exportXMLDefinition(), and exportXMLMetaData().

{
$attrs = array();
$a_xml_writer->xmlStartTag("Definition", $attrs);
$this->exportXMLMetaData($a_xml_writer);
$this->exportXMLDefinition($a_xml_writer, $a_inst);
$a_xml_writer->xmlEndTag("Definition");
}

+ Here is the call graph for this function:

ilGlossaryDefinition::exportXMLDefinition ( $a_xml_writer,
  $a_inst = 0 
)

export page objects meta data to xml (see ilias_co.dtd)

Parameters
object$a_xml_writerilXmlWriter object that receives the xml data

Definition at line 469 of file class.ilGlossaryDefinition.php.

Referenced by exportXML().

{
$this->page_object->buildDom();
$this->page_object->insertInstIntoIDs($a_inst);
$this->mobs_contained = $this->page_object->collectMediaObjects(false);
$this->files_contained = $this->page_object->collectFileItems();
$xml = $this->page_object->getXMLFromDom(false, false, false, "", true);
$xml = str_replace("&","&", $xml);
$a_xml_writer->appendXML($xml);
$this->page_object->freeDom();
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::exportXMLMetaData ( $a_xml_writer)

export content objects meta data to xml (see ilias_co.dtd)

Parameters
object$a_xml_writerilXmlWriter object that receives the xml data

Definition at line 439 of file class.ilGlossaryDefinition.php.

References $glo_id, ilGlossaryTerm\_lookGlossaryID(), getId(), getTermId(), and getType().

Referenced by exportXML().

{
include_once("Services/MetaData/classes/class.ilMD2XML.php");
$md2xml = new ilMD2XML($glo_id, $this->getId(), $this->getType());
$md2xml->setExportMode(true);
$md2xml->startExport();
$a_xml_writer->appendXML($md2xml->getXML());
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilGlossaryDefinition::getDefinitionList (   $a_term_id)

static

Definition at line 399 of file class.ilGlossaryDefinition.php.

References $ilDB, and $q.

Referenced by ilSoapGLOStructureReader\_parseStructure(), ilGlossaryTerm\delete(), ilObjGlossary\exportHTMLGlossaryTerms(), ilObjContentObject\exportHTMLGlossaryTerms(), ilGlossaryTerm\exportXML(), ilObjGlossary\exportXML(), ilGlossaryTermGUI\getInternalLinks(), ilGlossaryTermGUI\listDefinitions(), ilGlossaryPresentationGUI\listDefinitions(), ilGlossaryPresentationGUI\listTermByGiven(), ilObjGlossaryGUI\listTerms(), ilGlossaryTermGUI\output(), ilObjGlossaryGUI\quickList(), and ilLMPresentationGUI\showPrintView().

{
global $ilDB;
$defs = array();
$q = "SELECT * FROM glossary_definition WHERE term_id = ".
$ilDB->quote($a_term_id, "integer").
" ORDER BY nr";
$def_set = $ilDB->query($q);
while ($def_rec = $ilDB->fetchAssoc($def_set))
{
$defs[] = array("term_id" => $def_rec["term_id"],
"page_id" => $def_rec["page_id"], "id" => $def_rec["id"],
"short_text" => strip_tags($def_rec["short_text"], "<br>"),
"nr" => $def_rec["nr"]);
}
return $defs;
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::getDescription ( )

get description of content object

Returns
string description

Definition at line 143 of file class.ilGlossaryDefinition.php.

Referenced by createMetaData(), and updateMetaData().

{
return $this->description;
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::getId ( )

Definition at line 70 of file class.ilGlossaryDefinition.php.

References $id.

Referenced by create(), createMetaData(), deleteMetaData(), exportXMLMetaData(), MDUpdateListener(), modifyExportIdentifier(), and updateMetaData().

{
return $this->id;
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::getNr ( )

Definition at line 105 of file class.ilGlossaryDefinition.php.

References $nr.

Referenced by moveDown(), and moveUp().

{
return $this->nr;
}

+ Here is the caller graph for this function:

& ilGlossaryDefinition::getPageObject ( )

Definition at line 115 of file class.ilGlossaryDefinition.php.

References $page_object.

{
}
ilGlossaryDefinition::getShortText ( )

Definition at line 95 of file class.ilGlossaryDefinition.php.

References $short_text.

{
}
ilGlossaryDefinition::getTermId ( )

Definition at line 85 of file class.ilGlossaryDefinition.php.

References $term_id.

Referenced by create(), createMetaData(), deleteMetaData(), exportXMLMetaData(), MDUpdateListener(), moveDown(), and updateMetaData().

{
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::getTitle ( )

get title of content object

Returns
string title

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

References $title.

Referenced by createMetaData(), and updateMetaData().

{
return $this->title;
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::getType ( )

Definition at line 75 of file class.ilGlossaryDefinition.php.

Referenced by createMetaData(), deleteMetaData(), exportXMLMetaData(), MDUpdateListener(), and updateMetaData().

{
return "gdf";
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::ilGlossaryDefinition (   $a_id = 0)

Constructor public.

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

References $ilias, $lng, $tpl, and read().

{
global $lng, $ilias, $tpl;
$this->lng =& $lng;
$this->ilias =& $ilias;
$this->tpl =& $tpl;
$this->id = $a_id;
if ($a_id != 0)
{
$this->read();
}
}

+ Here is the call graph for this function:

ilGlossaryDefinition::MDUpdateListener (   $a_element)

Meta data update listener.

Important note: Do never call create() or update() method of ilObject here. It would result in an endless loop: update object -> update meta -> update object -> ... Use static _writeTitle() ... methods instead.

Even if this is not stored to db, it should be stored to the object e.g. for during import parsing

Parameters
string$a_element

Definition at line 557 of file class.ilGlossaryDefinition.php.

References $glo_id, $id, ilGlossaryTerm\_lookGlossaryID(), getId(), getTermId(), getType(), setDescription(), and setTitle().

{
include_once 'Services/MetaData/classes/class.ilMD.php';
switch($a_element)
{
case 'General':
// Update Title and description
$md =& new ilMD($glo_id, $this->getId(), $this->getType());
$md_gen = $md->getGeneral();
//ilObject::_writeTitle($this->getId(),$md_gen->getTitle());
$this->setTitle($md_gen->getTitle());
foreach($md_gen->getDescriptionIds() as $id)
{
$md_des = $md_gen->getDescription($id);
//ilObject::_writeDescription($this->getId(),$md_des->getDescription());
$this->setDescription($md_des->getDescription());
break;
}
break;
default:
}
return true;
}

+ Here is the call graph for this function:

ilGlossaryDefinition::modifyExportIdentifier (   $a_tag,
  $a_param,
  $a_value 
)

Definition at line 452 of file class.ilGlossaryDefinition.php.

References getId().

{
if ($a_tag == "Identifier" && $a_param == "Entry")
{
$a_value = "il_".IL_INST_ID."_gdf_".$this->getId();
}
return $a_value;
}

+ Here is the call graph for this function:

ilGlossaryDefinition::moveDown ( )

Definition at line 292 of file class.ilGlossaryDefinition.php.

References $ilDB, $q, getNr(), getTermId(), ilDB\LOCK_WRITE, and setNr().

{
global $ilDB;
// lock glossary_definition table
#ilDB::_lockTables(array('glossary_definition' => 'WRITE'));
$ilDB->lockTables(
array(
0 => array('name' => 'glossary_definition', 'type' => ilDB::LOCK_WRITE)));
// be sure to get the right number
$q = "SELECT * FROM glossary_definition WHERE id = ".
$ilDB->quote($this->id, "integer");
$def_set = $ilDB->query($q);
$def_rec = $ilDB->fetchAssoc($def_set);
$this->setNr($def_rec["nr"]);
// get max number
$q = "SELECT max(nr) as max_nr FROM glossary_definition WHERE term_id = ".
$ilDB->quote($this->getTermId(), "integer");
$max_set = $ilDB->query($q);
$max_rec = $ilDB->fetchAssoc($max_set);
if ($this->getNr() >= $max_rec["max_nr"])
{
$ilDB->unlockTables();
return;
}
// update numbers of other definitions
$ilDB->manipulate("UPDATE glossary_definition SET ".
" nr = nr - 1 ".
" WHERE term_id = ".$ilDB->quote($this->getTermId(), "integer")." ".
" AND nr = ".$ilDB->quote(($this->getNr() + 1), "integer"));
// delete current definition
$ilDB->manipulate("UPDATE glossary_definition SET ".
" nr = nr + 1 ".
" WHERE term_id = ".$ilDB->quote($this->getTermId(), "integer")." ".
" AND id = ".$ilDB->quote($this->getId(), "integer"));
// unlock glossary_definition table
$ilDB->unlockTables();
}

+ Here is the call graph for this function:

ilGlossaryDefinition::moveUp ( )

Definition at line 251 of file class.ilGlossaryDefinition.php.

References $ilDB, $q, getNr(), ilDB\LOCK_WRITE, and setNr().

{
global $ilDB;
// lock glossary_definition table
#ilDB::_lockTables(array('glossary_definition' => 'WRITE'));
$ilDB->lockTables(
array(
0 => array('name' => 'glossary_definition', 'type' => ilDB::LOCK_WRITE)));
// be sure to get the right number
$q = "SELECT * FROM glossary_definition WHERE id = ".
$ilDB->quote($this->id, "integer");
$def_set = $ilDB->query($q);
$def_rec = $ilDB->fetchAssoc($def_set);
$this->setNr($def_rec["nr"]);
if ($this->getNr() < 2)
{
$ilDB->unlockTables();
return;
}
// update numbers of other definitions
$ilDB->manipulate("UPDATE glossary_definition SET ".
" nr = nr + 1 ".
" WHERE term_id = ".$ilDB->quote($this->getTermId(), "integer")." ".
" AND nr = ".$ilDB->quote(($this->getNr() - 1), "integer"));
// delete current definition
$ilDB->manipulate("UPDATE glossary_definition SET ".
" nr = nr - 1 ".
" WHERE term_id = ".$ilDB->quote($this->getTermId(), "integer")." ".
" AND id = ".$ilDB->quote($this->getId(), "integer"));
// unlock glossary_definition table
$ilDB->unlockTables();
}

+ Here is the call graph for this function:

ilGlossaryDefinition::read ( )

read data of content object

Definition at line 49 of file class.ilGlossaryDefinition.php.

References $ilDB, $q, setNr(), setShortText(), and setTermId().

Referenced by ilGlossaryDefinition().

{
global $ilDB;
$q = "SELECT * FROM glossary_definition WHERE id = ".
$ilDB->quote($this->id, "integer");
$def_set = $ilDB->query($q);
$def_rec = $ilDB->fetchAssoc($def_set);
$this->setTermId($def_rec["term_id"]);
$this->setShortText($def_rec["short_text"]);
$this->setNr($def_rec["nr"]);
$this->page_object =& new ilPageObject("gdf", $this->id);
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilGlossaryDefinition::setDescription (   $a_description)

set description of content object

Definition at line 151 of file class.ilGlossaryDefinition.php.

Referenced by MDUpdateListener().

{
$this->description = $a_description;
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::setId (   $a_id)

Definition at line 65 of file class.ilGlossaryDefinition.php.

Referenced by create().

{
$this->id = $a_id;
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::setNr (   $a_nr)

Definition at line 100 of file class.ilGlossaryDefinition.php.

Referenced by create(), delete(), moveDown(), moveUp(), and read().

{
$this->nr = $a_nr;
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::setShortText (   $a_text)

Definition at line 90 of file class.ilGlossaryDefinition.php.

References shortenShortText().

Referenced by read(), and updateShortText().

{
$this->short_text = $this->shortenShortText($a_text);
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilGlossaryDefinition::setTermId (   $a_term_id)

Definition at line 80 of file class.ilGlossaryDefinition.php.

Referenced by read().

{
$this->term_id = $a_term_id;
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::setTitle (   $a_title)

set title of content object

Definition at line 133 of file class.ilGlossaryDefinition.php.

Referenced by MDUpdateListener().

{
$this->title = $a_title;
}

+ Here is the caller graph for this function:

ilGlossaryDefinition::shortenShortText (   $text)

Shorten short text.

Parameters
@return

Definition at line 358 of file class.ilGlossaryDefinition.php.

References ilUtil\shortenText().

Referenced by setShortText(), and updateShortText().

{
$text = str_replace("<br/>", "<br>", $text);
$text = strip_tags($text, "<br>");
if (is_int(strpos(substr($text, 175, 10), "[tex]")))
{
$offset = 5;
}
$short = ilUtil::shortenText($text, 180 + $offset, true);
// make short text longer, if tex end tag is missing
$ltexs = strrpos($short, "[tex]");
$ltexe = strrpos($short, "[/tex]");
if ($ltexs > $ltexe)
{
$ltexe = strpos($text, "[/tex]", $ltexs);
if ($ltexe > 0)
{
$short = ilUtil::shortenText($text, $ltexe+6, true);
}
}
$short = ilUtil::shortenText($text, 196, true);
return $short;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilGlossaryDefinition::update ( )

Definition at line 339 of file class.ilGlossaryDefinition.php.

References $ilDB, and updateMetaData().

Referenced by updateShortText().

{
global $ilDB;
$this->updateMetaData();
$ilDB->manipulate("UPDATE glossary_definition SET ".
" term_id = ".$ilDB->quote($this->getTermId(), "integer").", ".
" nr = ".$ilDB->quote($this->getNr(), "integer").", ".
" short_text = ".$ilDB->quote($this->getShortText(), "text")." ".
" WHERE id = ".$ilDB->quote($this->getId(), "integer"));
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilGlossaryDefinition::updateMetaData ( )

update meta data entry

Definition at line 509 of file class.ilGlossaryDefinition.php.

References $glo_id, ilGlossaryTerm\_lookGlossaryID(), getDescription(), getId(), getTermId(), getTitle(), and getType().

Referenced by update().

{
include_once("Services/MetaData/classes/class.ilMD.php");
include_once("Services/MetaData/classes/class.ilMDGeneral.php");
include_once("Services/MetaData/classes/class.ilMDDescription.php");
$md =& new ilMD($glo_id, $this->getId(), $this->getType());
$md_gen =& $md->getGeneral();
$md_gen->setTitle($this->getTitle());
// sets first description (maybe not appropriate)
$md_des_ids =& $md_gen->getDescriptionIds();
if (count($md_des_ids) > 0)
{
$md_des =& $md_gen->getDescription($md_des_ids[0]);
$md_des->setDescription($this->getDescription());
$md_des->update();
}
$md_gen->update();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilGlossaryDefinition::updateShortText ( )

Definition at line 385 of file class.ilGlossaryDefinition.php.

References setShortText(), shortenShortText(), and update().

{
$this->page_object->buildDom();
$text = $this->page_object->getFirstParagraphText();
$short = $this->shortenShortText($text);
$this->setShortText($short);
$this->update();
}

+ Here is the call graph for this function:

Field Documentation

ilGlossaryDefinition::$glo_id
ilGlossaryDefinition::$id

Definition at line 20 of file class.ilGlossaryDefinition.php.

Referenced by getId(), and MDUpdateListener().

ilGlossaryDefinition::$ilias

Definition at line 16 of file class.ilGlossaryDefinition.php.

Referenced by ilGlossaryDefinition().

ilGlossaryDefinition::$lng

Definition at line 17 of file class.ilGlossaryDefinition.php.

Referenced by ilGlossaryDefinition().

ilGlossaryDefinition::$nr

Definition at line 25 of file class.ilGlossaryDefinition.php.

Referenced by getNr().

ilGlossaryDefinition::$page_object

Definition at line 23 of file class.ilGlossaryDefinition.php.

Referenced by getPageObject().

ilGlossaryDefinition::$short_text

Definition at line 24 of file class.ilGlossaryDefinition.php.

Referenced by getShortText().

ilGlossaryDefinition::$term_id

Definition at line 21 of file class.ilGlossaryDefinition.php.

Referenced by getTermId().

ilGlossaryDefinition::$tpl

Definition at line 18 of file class.ilGlossaryDefinition.php.

Referenced by ilGlossaryDefinition().


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