1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-28 08:39:57 +02:00

Some basic preparation for new e_url scheme and other changes.

For anyone reading - please remember that 0.8 should not be utilized on a public site prior to official release.
This commit is contained in:
CaMer0n
2011-06-17 01:13:05 +00:00
parent 2475e1f5aa
commit 064c5c7d1e
9 changed files with 157 additions and 95 deletions

View File

@@ -14,8 +14,11 @@
* $Author$
*/
if (!defined('e107_INIT')) { exit; }
// IMPORTANT: This class is deprecated in it's current form and should not be utilized.
class eURL
{
/**
@@ -24,6 +27,7 @@ class eURL
protected $_link_handlers = array();
/**
*
* Create site url
* Example:
* <code>e107::getUrl()->create('core::news', 'main', 'action=extend&id=1&sef=Item-SEF-URL');</code>
@@ -233,3 +237,4 @@ class eURL
throw new Exception('Method '.$method.' does not exist!');//FIXME - e107Exception handler
}
}