Source for file UriScript.php
Documentation is available at UriScript.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 11: */
- 15: /**
- 16: * Extended HTTP URL.
- 17: *
- 18: * <pre>
- 19: * basePath relativeUri
- 20: * | |
- 21: * /-----\/------------------\
- 22: * http://nettephp.com/admin/script.php/pathinfo/?name=param#fragment
- 23: * \_______________/\________/
- 24: * | |
- 25: * scriptPath pathInfo
- 26: * </pre>
- 27: *
- 28: * - basePath: /admin/ (everything before relative URI not including the script name)
- 29: * - baseUri: http://nettephp.com/admin/
- 30: * - scriptPath: /admin/script.php
- 31: * - relativeUri: script.php/pathinfo/
- 32: * - pathInfo: /pathinfo/ (additional path information)
- 33: *
- 36: *
- 42: */
- 44: {
- 50: /**
- 51: * Sets the script-path part of URI.
- 54: */
- 56: {
- 60: }
- 64: /**
- 65: * Returns the script-path part of URI.
- 67: */
- 69: {
- 71: }
- 75: /**
- 76: * Returns the base-path.
- 78: */
- 80: {
- 82: }
- 86: /**
- 87: * Returns the base-URI.
- 89: */
- 91: {
- 93: }
- 97: /**
- 98: * Returns the relative-URI.
- 100: */
- 102: {
- 104: }
- 108: /**
- 109: * Returns the additional path information.
- 111: */
- 113: {
- 115: }
- 117: }