function find_nearest_key($key, &$array)
{
- $keys = array_keys($array);
+ $keys = array_keys($array);
if (in_array($key, $keys)) {
return $key;
}
- $val = null;
- $best = null;
+
+ $has_end = in_array("#final#", $keys);
+ if (strlen($key) > 24 && $has_end) {
+ return "#final#";
+ }
+
foreach ($keys as $k) {
+ if ($k == "#final#") {
+ continue;
+ }
$lev = levenshtein($key, $k);
- if ((is_null($val) || $lev < $val) && $lev < strlen($k)/2) {
+ if ((!isset($val) || $lev < $val) && $lev <= (strlen($k)*2)/3) {
$val = $lev;
$best = $k;
}
}
- if (is_null($best) && in_array("#final#", $keys)) {
+ if (!isset($best) && $has_end) {
return "#final#";
} else {
return $best;
{
$hooks = array();
foreach ($this->__hooks as $hook=>$handler) {
+ if (!empty($handler['perms']) && $handler['perms'] != S::v('perms')) {
+ continue;
+ }
$parts = split('/', $hook);
$place =& $hooks;
foreach ($parts as $part) {
$p = split('/', $this->path);
$place =& $hooks;
$link = '';
- $ended = false;
foreach ($p as $k) {
- if (!$ended) {
+ if (!isset($ended)) {
$key = $this->find_nearest_key($k, $place);
} else {
$key = $k;
}
if ($key == "#final#") {
- $key = $k;
- $ended = true;
if (!array_key_exists($link, $this->__hooks)) {
return null;
}
+ $key = $k;
+ $ended = true;
}
if (!is_null($key)) {
if (!empty($link)) {
$args = $this->argv;
$args[0] = &$page;
- if (strlen($hook['perms']) && $hook['perms'] != Session::v('perms')) {
+ if (!empty($hook['perms']) && $hook['perms'] != S::v('perms')) {
return PL_FORBIDDEN;
}
function find_nearest_key($key, &$array)
{
global $globals;
- $k = parent::find_nearest_key($key, $array);
- if (is_null($k) && in_array('%grp', array_keys($array)) && $globals->asso()) {
+ if (in_array('%grp', array_keys($array)) && $key == $globals->asso('diminutif')) {
return '%grp';
}
- return $k;
+ return parent::find_nearest_key($key, $array);
}
function near_hook()
{
- $link = parent::near_hook();
- if (strpos($link, '%grp') !== false) {
- global $globals;
- return str_replace('%grp', $globals->asso('diminutif'), $link);
- }
- return $link;
+ global $globals;
+ return str_replace('%grp', $globals->asso('diminutif'), parent::near_hook());
}
function find_hook()