19 declare(strict_types=1);
50 $this->
user = $DIC->user();
51 $this->presenter = $a_presenter;
52 $this->objDefinition = $DIC[
'objDefinition'];
53 $this->
ui = $DIC->ui();
54 $this->
http = $DIC->http();
57 $this->
setId(
"ilSearchResultsTable");
59 $this->
setId(
'search_' . $this->
user->getId());
64 $this->
addColumn($this->
lng->txt(
"search_title_description"),
"");
68 $this->
addColumn($all_cols[$col][
'txt'],
"",
'50px');
72 $this->
addColumn($this->
lng->txt(
"actions"),
"",
"10px");
76 $this->
setRowTemplate(
"tpl.search_result_row.html",
"components/ILIAS/Search");
89 return array(
'create_date' =>
91 'txt' => $this->
lng->txt(
'create_date'),
101 protected function fillRow(array $a_set): void
103 $obj_id = $a_set[
"obj_id"];
105 $type = $a_set[
'type'];
109 if (!$type || $this->objDefinition->isSideBlock($type)) {
115 $item_list_gui->setContainerObject($this->parent_obj);
116 $item_list_gui->setSearchFragment($this->presenter->lookupContent($obj_id, 0));
117 $item_list_gui->setSeparateCommands(
true);
121 $this->presenter->appendAdditionalInformation($item_list_gui,
$ref_id, $obj_id, $type);
123 $this->tpl->setVariable(
"ACTION_HTML", $item_list_gui->getCommandsHTML(
$title));
125 if ($html = $item_list_gui->getListItemHTML(
$ref_id, $obj_id,
'#SRC_HIGHLIGHT_TITLE',
'#SRC_HIGHLIGHT_DESC')) {
129 '#SRC_HIGHLIGHT_TITLE',
130 '#SRC_HIGHLIGHT_DESC' 141 $item_html[
$ref_id][
'html'] = $html;
142 $item_html[
$ref_id][
'type'] = $type;
145 $this->tpl->setVariable(
"ITEM_HTML", $html);
150 $this->tpl->setCurrentBlock(
'creation');
152 $this->tpl->parseCurrentBlock();
158 if (!$this->objDefinition->isPlugin($type)) {
159 $type_txt = $this->
lng->txt(
'icon') .
' ' . $this->
lng->txt(
'obj_' . $type);
166 $this->tpl->setVariable(
183 return $view_control . parent::getHTML();
189 foreach ($set as $key => $row) {
196 usort($set,
function (
$a,
$b) {
197 return $b[
'relevance'] <=>
$a[
'relevance'];
202 usort($set,
function (
$a,
$b) {
203 return [
$b[
'title'],
$b[
'relevance'] ??
''] <=> [
$a[
'title'],
$a[
'relevance'] ??
''];
208 usort($set,
function (
$a,
$b) {
209 return [
$a[
'title'],
$b[
'relevance'] ??
''] <=> [$b[
'title'],
$a[
'relevance'] ??
''];
213 case 'creation_date_desc':
214 usort($set,
function (
$a,
$b) {
215 $a_date = \DateTime::createFromFormat(
'm-d-Y H:i:s',
$a[
'create_date']);
216 $b_date = \DateTime::createFromFormat(
'm-d-Y H:i:s',
$b[
'create_date']);
217 return [$b_date,
$b[
'relevance'] ??
''] <=> [$a_date,
$a[
'relevance'] ??
''];
221 case 'creation_date_asc':
222 usort($set,
function (
$a,
$b) {
223 $a_date = \DateTime::createFromFormat(
'Y-m-d H:i:s',
$a[
'create_date']);
224 $b_date = \DateTime::createFromFormat(
'Y-m-d H:i:s',
$b[
'create_date']);
225 return [$a_date,
$b[
'relevance'] ??
''] <=> [$b_date,
$a[
'relevance'] ??
''];
229 parent::setData($set);
238 'relevance' => $this->
lng->txt(
'search_sort_relevance'),
239 'title_asc' => $this->
lng->txt(
'search_sort_title_asc'),
240 'title_desc' => $this->
lng->txt(
'search_sort_title_desc')
243 $sorts = array_merge($sorts, [
244 'creation_date_desc' => $this->
lng->txt(
'search_sort_creation_date_desc'),
245 'creation_date_asc' => $this->
lng->txt(
'search_sort_creation_date_asc')
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
setFormAction(string $a_form_action, bool $a_multipart=false)
setEnableTitle(bool $a_enabletitle)
getPossibleSortations()
Returns key => label.
buildSortationViewControl()
trait ilSearchResultTableHelper
getSelectableColumns()
Get selectable columns.
TableGUI class for search results.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static img(string $a_src, ?string $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
setDataAndApplySortation(array $set)
Provides fluid interface to RBAC services.
setExternalSorting(bool $a_val)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
static http()
Fetches the global http state from ILIAS.
Presentation of search results using object list gui.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static addListGUIActivationProperty(ilObjectListGUI $list_gui, array &$item)
Get timing details for list gui.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static lookupTxtById(string $plugin_id, string $lang_var)
ilObjectDefinition $objDefinition
fillRow(array $a_set)
Fill table row.
setEnableNumInfo(bool $a_val)
static _lookupCreationDate(int $obj_id)
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
ilSearchResultPresentation $presenter
__construct($a_parent_obj, $a_parent_cmd, ilSearchResultPresentation $a_presenter)
Constructor.
setEnableHeader(bool $a_enableheader)