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: * 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: {
- 98: }
- 102: /**
- 103: * Retrieve the presenter name.
- 105: */
- 107: {
- 109: }
- 113: /**
- 114: * Sets variables provided to the presenter.
- 117: */
- 119: {
- 123: }
- 127: /**
- 128: * Returns all variables provided to the presenter (usually via URL).
- 130: */
- 132: {
- 134: }
- 138: /**
- 139: * Sets variables provided to the presenter via POST.
- 142: */
- 144: {
- 152: /**
- 153: * Returns all variables provided to the presenter via POST.
- 155: */
- 157: {
- 159: }
- 163: /**
- 164: * Sets all uploaded files.
- 167: */
- 169: {
- 177: /**
- 178: * Returns all uploaded files.
- 180: */
- 182: {
- 184: }
- 188: /**
- 189: * Sets the method.
- 192: */
- 194: {
- 197: }
- 201: /**
- 202: * Returns the method.
- 204: */
- 206: {
- 208: }
- 212: /**
- 213: * Checks if the method is the given one.
- 216: */
- 218: {
- 220: }
- 224: /**
- 225: * Checks if the method is POST.
- 227: */
- 229: {
- 231: }
- 235: /**
- 236: * Sets the flag.
- 240: */
- 242: {
- 246: }
- 250: /**
- 251: * Checks the flag.
- 254: */
- 256: {
- 258: }
- 260: }