Skip to content

Commit 04b74ed

Browse files
committed
Fix link for tag in breadcrumbs
1 parent c3ce74e commit 04b74ed

File tree

3 files changed

+33
-9
lines changed

3 files changed

+33
-9
lines changed

controller/manage/queue/item.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ public function display_item($id)
8585
return $this->helper->needs_auth();
8686
}
8787

88+
// Create type link information for tags (e.g., make sure the tag hyperlinks back to the type)
89+
$queue_type = $this->types->get($this->queue->queue_type);
90+
$queue_type_name = $queue_type->name;
91+
$queue_type_url = $queue_type->url;
92+
8893
// Display the main queue item
8994
$data = \queue_overlord::display_queue_item($this->id);
9095

@@ -96,11 +101,14 @@ public function display_item($id)
96101

97102
$tag = $this->request->variable('tag', 0);
98103

104+
// Make sure the item category is added to the breadcrumb.
105+
// If the user clicks on a tag (e.g., a tag like "New" or "All")
106+
// then this part ensures it gets added to the navigation breadcrumbs
99107
if ($tag)
100108
{
101109
// Add tag to Breadcrumbs
102110
$this->display->generate_breadcrumbs(array(
103-
$this->tags->get_tag_name($tag) => $this->queue->get_url(false, array('tag' => $tag)),
111+
$this->tags->get_tag_name($tag) => $this->queue->get_url(false, array('tag' => $tag), [$queue_type_name => $queue_type_url]),
104112
));
105113
}
106114

controller/manage/queue/queue.php

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ public function display_queue($queue_type)
9090

9191
// Add to Breadcrumbs
9292
$this->display->generate_breadcrumbs(array(
93+
// This is where the type gets displayed
9394
$this->type->lang['lang'] => $this->get_queue_url($this->type->id),
9495
));
9596

includes/objects/queue.php

+23-8
Original file line numberDiff line numberDiff line change
@@ -668,20 +668,35 @@ public function get_queue_discussion_topic($check_only = false)
668668
*
669669
* @param bool|string $action Optional action to link to.
670670
* @param array $params Optional parameters to add to URL.
671+
* @param array $tag Optional link to type if tags shown
671672
*
672673
* @return string Returns generated URL.
673674
*/
674-
public function get_url($action = false, $params = array())
675+
public function get_url($action = false, $params = array(), $tag = false)
675676
{
676-
$controller = 'phpbb.titania.queue.item';
677-
$params += array(
678-
'id' => $this->queue_id,
679-
);
677+
if (!$tag)
678+
{
679+
$controller = 'phpbb.titania.queue.item';
680+
$params += array(
681+
'id' => $this->queue_id,
682+
);
683+
684+
if ($action)
685+
{
686+
$controller .= '.action';
687+
$params['action'] = $action;
688+
}
689+
}
680690

681-
if ($action)
691+
else
682692
{
683-
$controller .= '.action';
684-
$params['action'] = $action;
693+
// Link back to the correct type if the tag is shown
694+
$type_name = array_key_first($tag);
695+
696+
$controller = 'phpbb.titania.queue.type';
697+
$params += [
698+
'queue_type' => $tag[$type_name],
699+
];
685700
}
686701

687702
return $this->controller_helper->route($controller, $params);

0 commit comments

Comments
 (0)