Source for file PresenterRequest.php
Documentation is available at PresenterRequest.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 11: */
- 15: /**
- 16: * Presenter request. Immutable object.
- 17: *
- 20: *
- 25: */
- 27: {
- 28: /** method */
- 31: /** flag */
- 34: /** flag */
- 57: /**
- 63: */
- 64: public function __construct($name, $method, array $params, array $post = array(), array $files = array(), array $flags = array())
- 65: {
- 72: }
- 76: /**
- 77: * Sets the presenter name.
- 80: */
- 82: {
- 86: }
- 90: /**
- 91: * Retrieve the presenter name.
- 93: */
- 95: {
- 97: }
- 101: /**
- 102: * Sets variables provided to the presenter.
- 105: */
- 107: {
- 111: }
- 115: /**
- 116: * Returns all variables provided to the presenter (usually via URL).
- 118: */
- 120: {
- 122: }
- 126: /**
- 127: * Sets variables provided to the presenter via POST.
- 130: */
- 132: {
- 140: /**
- 141: * Returns all variables provided to the presenter via POST.
- 143: */
- 145: {
- 147: }
- 151: /**
- 152: * Sets all uploaded files.
- 155: */
- 157: {
- 165: /**
- 166: * Returns all uploaded files.
- 168: */
- 170: {
- 172: }
- 176: /**
- 177: * Sets the method.
- 180: */
- 182: {
- 185: }
- 189: /**
- 190: * Returns the method.
- 192: */
- 194: {
- 196: }
- 200: /**
- 201: * Checks if the method is the given one.
- 204: */
- 206: {
- 208: }
- 212: /**
- 213: * Checks if the method is POST.
- 215: */
- 217: {
- 219: }
- 223: /**
- 224: * Sets the flag.
- 228: */
- 230: {
- 234: }
- 238: /**
- 239: * Checks the flag.
- 242: */
- 244: {
- 246: }
- 248: }