diff options
author | emkael <emkael@tlen.pl> | 2016-02-26 17:13:13 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-02-26 17:18:02 +0100 |
commit | d327af5f481454d8738ab413e2c16ad829bbf800 (patch) | |
tree | 8a1d06af2e70132077a6c08bf4823ecbb27d8fbf /app/php/url/UrlManager.php | |
parent | 0f69294121ee68616961af02bcfc0c7662cd3ba5 (diff) |
* friendly URL support
Diffstat (limited to 'app/php/url/UrlManager.php')
-rw-r--r-- | app/php/url/UrlManager.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/app/php/url/UrlManager.php b/app/php/url/UrlManager.php new file mode 100644 index 0000000..a33d98e --- /dev/null +++ b/app/php/url/UrlManager.php @@ -0,0 +1,57 @@ +<?php + +Prado::using('System.Web.TUrlMapping'); + +class UrlManager extends TUrlMapping { + + public function constructUrl($serviceID, $serviceParam, $getItems, $encodeAmpersand, $encodeGetItems) { + $url = parent::constructUrl( + $serviceID, + $serviceParam, + $getItems, + $encodeAmpersand, + $encodeGetItems + ); + return rtrim( + preg_replace( + '#^/' . $serviceParam . '#', + '/' . $this->_convertServiceParam($serviceParam), + preg_replace('#^/' . $serviceID . '#', '', $url) + ), + '/' + ) . '/'; + } + + public function parseUrl() { + $params = parent::parseUrl(); + if ($this->MatchingPattern) { + $serviceID = $this->MatchingPattern->ServiceID; + if (isset($params[$serviceID])) { + $params[$serviceID] = $this->_parseServiceParam($params[$serviceID]); + } + } + return $params; + } + + /** + * Convert service param from camelCase to hyphenated-form. + **/ + private function _convertServiceParam($param) { + return implode( + '-', + array_map('mb_strtolower', array_filter(preg_split('/(?=[A-Z])/', $param))) + ); + } + + /** + * Convert service param from hyphenated-form to camelCase. + **/ + private function _parseServiceParam($param) { + return implode( + '', + array_map('ucfirst', explode('-', $param)) + ); + } +} + +?> |