TYPO3 CMS  TYPO3_6-2
ReferringRequest.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
23 {
30  public function setArgument($argumentName, $value)
31  {
32  parent::setArgument($argumentName, $value);
33 
34  switch ($argumentName) {
35  case '@extension':
36  $this->setControllerExtensionName($value);
37  break;
38  case '@subpackage':
39  $this->setControllerSubpackageKey($value);
40  break;
41  case '@controller':
42  $this->setControllerName($value);
43  break;
44  case '@action':
45  $this->setControllerActionName($value);
46  break;
47  case '@format':
48  $this->setFormat($value);
49  break;
50  case '@vendor':
51  $this->setControllerVendorName($value);
52  break;
53  }
54  }
55 
56 }
setControllerName($controllerName)
Definition: Request.php:299
setControllerActionName($actionName)
Definition: Request.php:332
setControllerExtensionName($controllerExtensionName)
Definition: Request.php:243
setControllerSubpackageKey($subpackageKey)
Definition: Request.php:276
setControllerVendorName($vendorName)
Definition: Request.php:396