ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
ilBiblEntryTablePresentationGUI Class Reference

Class ilBiblEntryTablePresentationGUI. More...

+ Collaboration diagram for ilBiblEntryTablePresentationGUI:

Public Member Functions

 __construct (ilBiblEntry $entry, ilBiblFactoryFacadeInterface $facade)
 ilBiblEntryTablePresentationGUI constructor. More...
 
 getHtml ()
 
 setHtml ($html)
 
 getEntry ()
 
 setEntry ($entry)
 

Protected Member Functions

 render ()
 

Protected Attributes

 $entry
 
 $html = ''
 
 $facade
 

Detailed Description

Constructor & Destructor Documentation

◆ __construct()

ilBiblEntryTablePresentationGUI::__construct ( ilBiblEntry  $entry,
ilBiblFactoryFacadeInterface  $facade 
)

ilBiblEntryTablePresentationGUI constructor.

Parameters
\ilBiblEntry$entry

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

References $entry, $facade, and render().

+ Here is the call graph for this function:

Member Function Documentation

◆ getEntry()

ilBiblEntryTablePresentationGUI::getEntry ( )
Returns
ilBiblEntry

Definition at line 127 of file class.ilBiblEntryTablePresentationGUI.php.

References $entry.

Referenced by render().

+ Here is the caller graph for this function:

◆ getHtml()

ilBiblEntryTablePresentationGUI::getHtml ( )
Returns
string

Definition at line 109 of file class.ilBiblEntryTablePresentationGUI.php.

References $html.

◆ render()

ilBiblEntryTablePresentationGUI::render ( )
protected
Returns
mixed|string
Deprecated:
Has to be refactored. Active records verwenden statt array

Definition at line 44 of file class.ilBiblEntryTablePresentationGUI.php.

References $attributes, getEntry(), and setHtml().

Referenced by __construct().

45  {
46  $attributes = $this->facade->entryFactory()->loadParsedAttributesByEntryId($this->getEntry()->getId());
47  //Get the model which declares which attributes to show in the overview table and how to show them
48  //example for overviewModels: $overviewModels['bib']['default'] => "[<strong>|bib_default_author|</strong>: ][|bib_default_title|. ]<Emph>[|bib_default_publisher|][, |bib_default_year|][, |bib_default_address|].</Emph>"
49  $overviewModels = $this->facade->overviewModelFactory()->getAllOverviewModelsByType($this->facade->type());
50  //get design for specific entry type or get filetypes default design if type is not specified
51  $entryType = $this->getEntry()->getType();
52  //if there is no model for the specific entrytype (book, article, ....) the entry overview will be structured by the default entrytype from the given filetype (ris, bib, ...)
53  if (!$overviewModels[$this->facade->typeFactory()->getDataTypeIdentifierByInstance($this->facade->entryFactory()->getFileType())][$entryType]) {
54  $entryType = 'default';
55  }
56  $single_entry = $overviewModels[$entryType];
57  //split the model into single attributes (which begin and end with a bracket, eg [|bib_default_title|. ] )
58  //such values are saved in $placeholders[0] while the same values but whithout brackets are saved in $placeholders[1] (eg |bib_default_title|. )
59  preg_match_all('/\[(.*?)\]/', $single_entry, $placeholders);
60  foreach ($placeholders[1] as $key => $placeholder) {
61  //cut a moedel attribute like |bib_default_title|. in three pieces while $cuts[1] is the attribute key for the actual value and $cuts[0] is what comes before respectively $cuts[2] is what comes after the value if it is not empty.
62  $cuts = explode('|', $placeholder);
63  //if attribute key does not exist, because it comes from the default entry (e.g. ris_default_u2), we replace 'default' with the entrys type (e.g. ris_book_u2)
64  if (!$attributes[$cuts[1]]) {
65  $attribute_elements = explode('_', $cuts[1]);
66  $attribute_elements[1] = strtolower($this->getEntry()->getType());
67  $cuts[1] = implode('_', $attribute_elements);
68  }
69  if ($attributes[$cuts[1]]) {
70  //if the attribute for the attribute key exists, replace one attribute in the overview text line of a single entry with its actual value and the text before and after the value given by the model
71  $single_entry = str_replace($placeholders[0][$key], $cuts[0] . $attributes[$cuts[1]]
72  . $cuts[2], $single_entry);
73  // replace the <emph> tags with a span, in order to make text italic by css
74  do {
75  $first_sign_after_begin_emph_tag = strpos(strtolower($single_entry), '<emph>')
76  + 6;
77  $last_sign_after_end_emph_tag = strpos(strtolower($single_entry), '</emph>');
78  $italic_text_length = $last_sign_after_end_emph_tag
79  - $first_sign_after_begin_emph_tag;
80  //would not be true if there is no <emph> tag left
81  if ($last_sign_after_end_emph_tag) {
82  $italic_text = substr($single_entry, $first_sign_after_begin_emph_tag, $italic_text_length);
83  //parse
84  $it_tpl = new ilTemplate("tpl.bibliographic_italicizer.html", true, true, "Modules/Bibliographic");
85  $it_tpl->setCurrentBlock("italic_section");
86  $it_tpl->setVariable('ITALIC_STRING', $italic_text);
87  $it_tpl->parseCurrentBlock();
88  //replace the emph tags and the text between with the parsed text from il_tpl
89  $text_before_emph_tag = substr($single_entry, 0, $first_sign_after_begin_emph_tag
90  - 6);
91  $text_after_emph_tag = substr($single_entry, $last_sign_after_end_emph_tag
92  + 7);
93  $single_entry = $text_before_emph_tag . $it_tpl->get()
94  . $text_after_emph_tag;
95  }
96  } while ($last_sign_after_end_emph_tag);
97  } else {
98  //if the attribute for the attribute key does not exist, just remove this attribute-key from the overview text line of a single entry
99  $single_entry = str_replace($placeholders[0][$key], '', $single_entry);
100  }
101  }
102  $this->setHtml($single_entry);
103  }
$attributes
Definition: metadata.php:231
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setEntry()

ilBiblEntryTablePresentationGUI::setEntry (   $entry)
Parameters
ilBiblEntry$entry

Definition at line 136 of file class.ilBiblEntryTablePresentationGUI.php.

References $entry.

◆ setHtml()

ilBiblEntryTablePresentationGUI::setHtml (   $html)
Parameters
string$html

Definition at line 118 of file class.ilBiblEntryTablePresentationGUI.php.

References $html.

Referenced by render().

+ Here is the caller graph for this function:

Field Documentation

◆ $entry

ilBiblEntryTablePresentationGUI::$entry
protected

Definition at line 15 of file class.ilBiblEntryTablePresentationGUI.php.

Referenced by __construct(), getEntry(), and setEntry().

◆ $facade

ilBiblEntryTablePresentationGUI::$facade
protected

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

Referenced by __construct().

◆ $html

ilBiblEntryTablePresentationGUI::$html = ''
protected

Definition at line 19 of file class.ilBiblEntryTablePresentationGUI.php.

Referenced by getHtml(), and setHtml().


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