39 $this->db = $DIC->database();
51 $parsed_attributes = [];
52 foreach ($attributes as $attribute) {
53 $value = $this->secure($attribute->getValue());
56 $value = preg_replace(
'!(http)(s)?:\/\/[a-zA-Z0-9.?&_/\-~\!\'\*()+,:;@=$#\[\]%]+!',
"<a href=\"\\0\" target=\"_blank\">\\0</a>", $value);
60 $attribute->setValue($value);
61 $parsed_attributes[strtolower($this->file_type->getStringRepresentation() .
'_' . $type .
'_' . $attribute->getName())] = $value;
63 $this->field_factory->findOrCreateFieldOfAttribute($attribute);
66 return $parsed_attributes;
85 $inst = $this->
createEntry($bibliographic_obj_id, $entry_type);
87 $inst->setDataId($bibliographic_obj_id);
88 $inst->setEntryType($entry_type);
100 $inst->setDataId($bibliographic_obj_id);
101 $inst->setEntryType($entry_type);
125 foreach ($entries as $entry_id => $entry) {
129 return $entry_objects;
137 $types = [
"integer"];
138 $values = [$object_id];
140 $filters = $info->getFilters();
141 if (!empty($filters)) {
142 $q =
"SELECT (e.id), e.type FROM il_bibl_entry AS e WHERE data_id = %s";
143 foreach ($filters as $filter) {
144 $value = $filter->getFieldValue();
148 if ($filter->getOperator() ===
"IN" && is_array($filter->getFieldValue())) {
150 $values[] = $filter->getFieldName();
151 $q .=
" AND e.id IN (SELECT a.entry_id FROM il_bibl_attribute AS a WHERE a.name = %s AND " . $this->db->in(
"a.value", $value,
false,
"text") .
")";
154 $values[] = $filter->getFieldName();
156 $values[] =
"{$value}";
157 $q .=
" AND e.id IN (SELECT a.entry_id FROM il_bibl_attribute AS a WHERE a.name = %s AND a.value {$filter->getOperator()} %s )";
161 $q =
"SELECT DISTINCT (e.id), e.type FROM il_bibl_entry AS e 162 JOIN il_bibl_attribute AS a ON a.entry_id = e.id 166 $set = $this->db->queryF(
$q, $types, $values);
169 while ($rec = $this->db->fetchAssoc($set)) {
170 $entries[$i][
'entry_id'] = $rec[
'id'];
171 $entries[$i][
'entry_type'] = $rec[
'type'];
188 $this->db->manipulateF(
"DELETE FROM il_bibl_entry WHERE data_id = %s", [
'integer'], [$object_id]);
201 return $this->file_type;
206 $this->file_type = $file_type;
setAttributes(array $attributes)
createEntry(int $bibliographic_obj_id, string $entry_type)
filterEntriesForTable(int $object_id, ?ilBiblTableQueryInfo $info=null)
setFileType(string $file_type)
__construct(protected \ilBiblFieldFactoryInterface $field_factory, protected \ilBiblTypeInterface $file_type, protected \ilBiblOverviewModelFactoryInterface $overview_factory)
ilBiblEntryFactory constructor.
findOrCreateEntry(int $id, int $bibliographic_obj_id, string $entry_type)
int $bibliographic_obj_id
deleteEntriesById(int $object_id)
static where($where, $operator=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Interface ilBiblEntryFactoryInterface.
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...
loadParsedAttributesByEntryId(int $entry_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
filterEntryIdsForTableAsArray(int $object_id, ?ilBiblTableQueryInfo $info=null)
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getAllAttributesByEntryId(int $id)
findByIdAndTypeString(int $id, string $type_string)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...