* Copyright (C) 2011, StatusNet, Inc.
*
* URL mapper
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
* Converts a path into a set of parameters, and vice versa
*
* We used to use Net_URL_Mapper, so there's a wrapper class at Router, q.v.
- *
+ *
* NUM's vagaries are the main reason we have weirdnesses here.
*
* @category URL
protected $statics = array();
protected $variables = array();
protected $reverse = array();
+ protected $allpaths = array();
function connect($path, $args, $paramPatterns=array())
{
throw new Exception(sprintf("Can't connect %s; path has no action.", $path));
}
+ $allpaths[] = $path;
+
$action = $args[self::ACTION];
$paramNames = $this->getParamNames($path);
return $results;
}
}
-
+
throw new Exception(sprintf('No match for path "%s"', $path));
}
$path = vsprintf($format, $toFormat);
}
- if (!empty($qstring)) {
+ if (!empty($qstring)) {
$formatted = http_build_query($qstring);
$path .= '?' . $formatted;
}
return $format;
}
+
+ public function getPaths()
+ {
+ return $this->allpaths;
+ }
}
class PatternReplacer