Source for file PresenterRequest.php
Documentation is available at PresenterRequest.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 6: * Copyright (c) 2004, 2009 David Grudl (http://davidgrudl.com)
- 7: *
- 8: * This source file is subject to the "Nette license" that is bundled
- 9: * with this package in the file license.txt.
- 10: *
- 11: * For more information please see http://nettephp.com
- 12: *
- 18: */
- 26: /**
- 27: * Application presenter request. Immutable object.
- 28: *
- 32: *
- 37: */
- 39: {
- 40: /** method */
- 43: /** flag */
- 46: /** flag */
- 69: /**
- 75: */
- 76: public function __construct($name, $method, array $params, array $post = array(), array $files = array(), array $flags = array())
- 77: {
- 84: }
- 88: /**
- 89: * Sets the presenter name.
- 92: */
- 94: {
- 97: }
- 101: /**
- 102: * Retrieve the presenter name.
- 104: */
- 106: {
- 108: }
- 112: /**
- 113: * Sets variables provided to the presenter.
- 116: */
- 118: {
- 121: }
- 125: /**
- 126: * Returns all variables provided to the presenter (usually via URL).
- 128: */
- 130: {
- 132: }
- 136: /**
- 137: * Sets variables provided to the presenter via POST.
- 140: */
- 142: {
- 149: /**
- 150: * Returns all variables provided to the presenter via POST.
- 152: */
- 154: {
- 156: }
- 160: /**
- 161: * Sets all uploaded files.
- 164: */
- 166: {
- 173: /**
- 174: * Returns all uploaded files.
- 176: */
- 178: {
- 180: }
- 184: /**
- 185: * Sets the method.
- 188: */
- 190: {
- 192: }
- 196: /**
- 197: * Checks if the method is the given one.
- 200: */
- 202: {
- 204: }
- 208: /**
- 209: * Checks if the method is POST.
- 211: */
- 213: {
- 215: }
- 219: /**
- 220: * Sets the flag.
- 224: */
- 226: {
- 229: }
- 233: /**
- 234: * Checks the flag.
- 237: */
- 239: {
- 241: }
- 243: }