TYPO3 CMS  TYPO3_6-2
GeneralUtilityFixture.php
Go to the documentation of this file.
1 <?php
3 
18 
23 
28 
35  static public function isAllowedHostHeaderValue($hostHeaderValue) {
36  self::$isAllowedHostHeaderValueCallCount++;
37  return parent::isAllowedHostHeaderValue($hostHeaderValue);
38  }
39 
44  static::$allowHostHeaderValue = $allowHostHeaderValue;
45  }
46 
52  static protected function isInternalRequestType() {
53  return FALSE;
54  }
55 
63  static public function getRedirectUrlFromHttpHeaders($content) {
64  return parent::getRedirectUrlFromHttpHeaders($content);
65  }
66 
73  static public function stripHttpHeaders($content) {
74  return parent::stripHttpHeaders($content);
75  }
76 }