Merge pull request #2810 from nickvergessen/ticket/12919

[ticket/12919] Use the modules basename as identifier for extension modules
This commit is contained in:
Marc Alexander 2014-08-07 17:36:19 +02:00
commit a8dee3fb65

View file

@ -489,6 +489,12 @@ class p_master
$id = request_var('icat', ''); $id = request_var('icat', '');
} }
// Restore the backslashes in class names
if (strpos($id, '-') !== false)
{
$id = str_replace('-', '\\', $id);
}
if ($id && !is_numeric($id) && !$this->is_full_class($id)) if ($id && !is_numeric($id) && !$this->is_full_class($id))
{ {
$id = $this->p_class . '_' . $id; $id = $this->p_class . '_' . $id;
@ -616,7 +622,7 @@ class p_master
} }
// Not being able to overwrite ;) // Not being able to overwrite ;)
$this->module->u_action = append_sid("{$phpbb_admin_path}index.$phpEx", 'i=' . $this->get_module_identifier($this->p_name, $this->p_id)) . (($icat) ? '&icat=' . $icat : '') . "&mode={$this->p_mode}"; $this->module->u_action = append_sid("{$phpbb_admin_path}index.$phpEx", 'i=' . $this->get_module_identifier($this->p_name)) . (($icat) ? '&icat=' . $icat : '') . "&mode={$this->p_mode}";
} }
else else
{ {
@ -648,7 +654,7 @@ class p_master
$this->module->u_action = $phpbb_root_path . (($user->page['page_dir']) ? $user->page['page_dir'] . '/' : '') . $user->page['page_name']; $this->module->u_action = $phpbb_root_path . (($user->page['page_dir']) ? $user->page['page_dir'] . '/' : '') . $user->page['page_name'];
} }
$this->module->u_action = append_sid($this->module->u_action, 'i=' . $this->get_module_identifier($this->p_name, $this->p_id)) . (($icat) ? '&icat=' . $icat : '') . "&mode={$this->p_mode}"; $this->module->u_action = append_sid($this->module->u_action, 'i=' . $this->get_module_identifier($this->p_name)) . (($icat) ? '&icat=' . $icat : '') . "&mode={$this->p_mode}";
} }
// Add url_extra parameter to u_action url // Add url_extra parameter to u_action url
@ -901,7 +907,7 @@ class p_master
else else
{ {
// if the category has a name, then use it. // if the category has a name, then use it.
$u_title .= $this->get_module_identifier($item_ary['name'], $item_ary['id']); $u_title .= $this->get_module_identifier($item_ary['name']);
} }
// If the item is not a category append the mode // If the item is not a category append the mode
if (!$item_ary['cat']) if (!$item_ary['cat'])
@ -1106,26 +1112,24 @@ class p_master
} }
/** /**
* If the basename contains a \ we dont use that for the URL. * If the basename contains a \ we don't use that for the URL.
* *
* Firefox is currently unable to correctly copy a urlencoded \ * Firefox is currently unable to correctly copy a urlencoded \
* so users will be unable to post links to modules. * so users will be unable to post links to modules.
* However we can still fallback to the id instead of the name, * However we can replace them with dashes and re-replace them later
* so we do that in this case.
* *
* @param string $basename Basename of the module * @param string $basename Basename of the module
* @param int $id Id of the module * @return string Identifier that should be used for
* @return mixed Identifier that should be used for
* module link creation * module link creation
*/ */
protected function get_module_identifier($basename, $id) protected function get_module_identifier($basename)
{ {
if (strpos($basename, '\\') === false) if (strpos($basename, '\\') === false)
{ {
return $basename; return $basename;
} }
return $id; return str_replace('\\', '-', $basename);
} }
/** /**