44 $attributes = $this->facade->entryFactory()->loadParsedAttributesByEntryId($entry->
getId());
45 $type = $this->facade->typeFactory()->getInstanceForString($type);
48 switch ($type->getId()) {
50 $prefix =
"bib_default_";
51 if (!empty($attributes[$prefix .
"isbn"])) {
53 } elseif (!empty($attributes[$prefix .
"pmid"])) {
55 } elseif (!empty($attributes[$prefix .
"doi"])) {
57 } elseif (!empty($attributes[$prefix .
"issn"])) {
60 $attr = [
"title",
"author",
"year",
"number",
"volume"];
64 $prefix =
"ris_" . strtolower($entry->
getType()) .
"_";
65 if (!empty($attributes[$prefix .
"sn"])) {
67 } elseif (!empty($attributes[$prefix .
"do"])) {
70 $attr = [
"ti",
"t1",
"au",
"py",
"is",
"vl"];
76 if (count($attr) === 1) {
77 if (($attr[0] ===
"doi") || ($attr[0] ===
"pmid")) {
78 $url_params .=
"id=" . $this->
formatAttribute($attr[0], $type, $attributes, $prefix)
79 .
"%3A" . $attributes[$prefix . $attr[0]];
80 } elseif ($attr[0] ===
"do") {
81 $url_params .=
"id=" . $this->
formatAttribute($attr[0], $type, $attributes, $prefix)
82 .
"i%3A" . $attributes[$prefix . $attr[0]];
84 $url_params .= $this->
formatAttribute($attr[0], $type, $attributes, $prefix) .
"=" 85 . urlencode((
string) $attributes[$prefix . $attr[0]]);
88 foreach ($attr as
$a) {
89 if (array_key_exists($prefix . $a, $attributes)) {
90 if (strlen($url_params) > 1) {
93 $url_params .= $this->
formatAttribute($a, $type, $attributes, $prefix) .
"=" 94 . urlencode((
string) $attributes[$prefix . $a]);
99 return $this->library->getUrl() . $url_params;
108 if (
null !== ($img_path = $this->library->getImg())) {
109 $icon = $this->
ui->factory()->symbol()->icon()->custom($img_path,
"");
110 $btn_online_link = $this->
ui->factory()->button()->bulky(
112 $this->
lng->txt(
'bibl_link_online'),
116 $btn_online_link = $this->
ui->factory()->button()->standard(
117 $this->
lng->txt(
'bibl_link_online'),
122 return $this->
ui->renderer()->render($btn_online_link);
140 $a = strlen((
string) $attributes[$prefix .
"sn"]) <= 9 ?
"issn" :
"isbn";
getButton(ilBiblFactoryFacadeInterface $bibl_factory_facade, ilBiblEntry $entry)
__construct(protected \ilBiblLibraryInterface $library, protected \ilBiblFactoryFacade $facade, protected \ilCtrlInterface $ctrl, protected \ilLanguage $lng, protected UIServices $ui)
ilBiblLibraryPresentationGUI constructor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Provides fluid interface to RBAC services.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
generateLibraryLink(ilBiblEntry $entry, string $type)
formatAttribute(string $a, ilBiblTypeInterface $type, array $attributes, string $prefix)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getStringRepresentation()
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilBiblLibraryPresentationGUI.