1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-08 07:36:32 +02:00

SEF urls for download search results

This commit is contained in:
Tijn Kuyper
2019-10-26 15:39:10 +02:00
parent 3c662519fe
commit b9af475ecb

View File

@@ -51,14 +51,15 @@ class download_search extends e_search // include plugin-folder in the name.
'd.download_id', 'd.download_id',
'd.download_sef', 'd.download_sef',
'd.download_category', 'd.download_category',
'c.download_category_id',
'd.download_name', 'd.download_name',
'd.download_description', 'd.download_description',
'd.download_author', 'd.download_author',
'd.download_author_website', 'd.download_author_website',
'd.download_datestamp', 'd.download_datestamp',
'd.download_class', 'd.download_class',
'c.download_category_id',
'c.download_category_name', 'c.download_category_name',
'c.download_category_sef',
'c.download_category_class' 'c.download_category_class'
), ),
@@ -88,7 +89,9 @@ class download_search extends e_search // include plugin-folder in the name.
{ {
$tp = e107::getParser(); $tp = e107::getParser();
//TODO SEF URLs for list below. $download_index_url = e107::url('download', 'index');
$download_category_url = e107::url('download', 'category', $row);
//TODO Remove html from pre_summary and use additional vars instead. //TODO Remove html from pre_summary and use additional vars instead.
$res = array(); $res = array();
@@ -98,14 +101,11 @@ class download_search extends e_search // include plugin-folder in the name.
$res['link'] = e107::url('download', 'item', $row); $res['link'] = e107::url('download', 'item', $row);
$res['pre_title'] = $tp->toHTML($row['download_category_name'],false,'TITLE_PLAIN')." | "; $res['pre_title'] = $tp->toHTML($row['download_category_name'],false,'TITLE_PLAIN')." | ";
$res['title'] = $row['download_name']; $res['title'] = $row['download_name'];
$res['pre_summary'] = "<div class='smalltext'><a href='download.php'>".LAN_197."</a> -> <a href='download.php?list.".$row['download_category_id']."'>".$row['download_category_name']."</a></div>"; $res['pre_summary'] = "<div class='smalltext'><a href='".$download_index_url."'>".LAN_197."</a> -> <a href='".$download_category_url."'>".$row['download_category_name']."</a></div>";
$res['summary'] = $row['download_description']; $res['summary'] = $row['download_description'];
$res['detail'] = LAN_SEARCH_15." ".$row['download_author']." | ".LAN_SEARCH_66.": ".$datestamp; $res['detail'] = LAN_SEARCH_15." ".$row['download_author']." | ".LAN_SEARCH_66.": ".$datestamp;
return $res; return $res;
} }