App\RecordNotFoundException

product: search►

Source file

File: /var/www/promaturak.cz/test/app/model/daos/Dao.php:70

60: } 61: 62: /** 63: * @param int $id 64: * @return ActiveRow 65: * @throws RecordNotFoundException 66: */ 67: public function need($id) { 68: $activeRow = $this->find($id)->fetch(); 69: if ($activeRow === false) { 70: throw new RecordNotFoundException("$this->tableName: $id"); 71: } 72: return $activeRow; 73: } 74:

Call stack

  1. .../www/promaturak.cz/test/app/FrontModule/Routes.php:76 source  Daos\Dao-> need (arguments)

    66: $presenter = &$params['presenter']; 67: $action = &$params['action']; 68: $id = &$params['id']; 69: if ($action === 'view' && in_array($presenter, $havingViewAsDetail, true)) { // converts view -> detail so it matches this route 70: $action = 'detail'; 71: } 72: if (!in_array($presenter, $havingDetail) || $action !== 'detail') { // skip when in detail-less presenter or action is not detail 73: return null; 74: } 75: if ($presenter === 'Product') { 76: $id = $this->productDao->need($id)->_('url', $this->languages->getLangIdByIdent($params['lang'])); // TODO: better & faster? 77: } elseif ($presenter === 'Category') { 78: $id = $this->categoryDao->need($id)->_('url', $this->languages->getLangIdByIdent($params['lang'])); // TODO: better & faster? 79: } elseif ($presenter === 'Article') { // article and page atm dont need special treatment (their idents/urls are used for linking directly) 80: } elseif ($presenter === 'Page') {
    $id
    NULL
    
  2. .../Innetic/Nette/Application/Routers/FilterRoute.php:47 source  FrontModule\Routes-> FrontModule\{closure} (arguments)

    37: $newValue = $filter($value, $params); 38: if ($newValue === null) { 39: return null; 40: } 41: $params[$param] = $newValue; 42: } 43: } 44: } 45: if (isset($filters[null])) { 46: foreach ($filters[null] as $filter) { 47: $params = $filter($params); 48: } 49: } 50: } 51: return $params;
    #0
    
    
  3. .../Innetic/Nette/Application/Routers/FilterRoute.php:26 source  Innetic\Nette\Application\Routers\FilterRoute-> processParams (arguments)

    16: * @param string $mask URL mask, e.g. '<presenter>/<action>/<id \d{1,3}>' 17: * @param array $metadata default values or metadata 18: * @param int $flags 19: */ 20: public function __construct($mask, $metadata = array(), $flags = 0) { 21: $metadata[null] = [ 22: self::FILTER_IN => function (array $params = []) { 23: return $this->processParams($params, $this->inFilters); 24: }, 25: self::FILTER_OUT => function (array $params = []) { 26: return $this->processParams($params, $this->outFilters); 27: } 28: ]; 29: parent::__construct($mask, $metadata, $flags); 30: }
    $params
    
    
    $filters
    
    
  4. inner-code Innetic\Nette\Application\Routers\FilterRoute-> Innetic\Nette\Application\Routers\{closure} (arguments)

    #0
    
    
  5. .../application/src/Application/Routers/Route.php:281 source  call_user_func (arguments)

    271: return NULL; 272: } 273: 274: $params = $appRequest->getParameters(); 275: $metadata = $this->metadata; 276: 277: $presenter = $appRequest->getPresenterName(); 278: $params[self::PRESENTER_KEY] = $presenter; 279: 280: if (isset($metadata[NULL][self::FILTER_OUT])) { 281: $params = call_user_func($metadata[NULL][self::FILTER_OUT], $params); 282: if ($params === NULL) { 283: return NULL; 284: } 285: }
    $function_name
    
    
    $parameters
    
    
  6. .../application/src/Application/Routers/RouteList.php:91 source  Nette\Application\Routers\Route-> constructUrl (arguments)

    81: return NULL; 82: } 83: } 84: 85: $presenter = $appRequest->getPresenterName(); 86: if (!isset($this->cachedRoutes[$presenter])) { 87: $presenter = '*'; 88: } 89: 90: foreach ($this->cachedRoutes[$presenter] as $route) { 91: $url = $route->constructUrl($appRequest, $refUrl); 92: if ($url !== NULL) { 93: return $url; 94: } 95: }
    $appRequest
    
    
    $refUrl
    
    
  7. .../test/app/model/routes/LangRouteList.php:44 source  Nette\Application\Routers\RouteList-> constructUrl (arguments)

    34: parent::__construct($module); 35: } 36: 37: public function match(IRequest $httpRequest) { 38: $this->callSetup(); 39: return parent::match($httpRequest); 40: } 41: 42: public function constructUrl(Request $appRequest, Url $refUrl) { 43: $this->callSetup(); 44: return parent::constructUrl($appRequest, $refUrl); 45: } 46: 47: private function callSetup() { 48: if ($this->setupCalled === false) {
    $appRequest
    
    
    $refUrl
    
    
  8. .../application/src/Application/Routers/RouteList.php:91 source  App\LangRouteList-> constructUrl (arguments)

    81: return NULL; 82: } 83: } 84: 85: $presenter = $appRequest->getPresenterName(); 86: if (!isset($this->cachedRoutes[$presenter])) { 87: $presenter = '*'; 88: } 89: 90: foreach ($this->cachedRoutes[$presenter] as $route) { 91: $url = $route->constructUrl($appRequest, $refUrl); 92: if ($url !== NULL) { 93: return $url; 94: } 95: }
    $appRequest
    
    
    $refUrl
    
    
  9. .../nette/application/src/Application/UI/Presenter.php:983 source  Nette\Application\Routers\RouteList-> constructUrl (arguments)

    973: 974: // CONSTRUCT URL 975: static $refUrl; 976: if ($refUrl === NULL) { 977: $refUrl = new Http\Url($this->httpRequest->getUrl()); 978: $refUrl->setPath($this->httpRequest->getUrl()->getScriptPath()); 979: } 980: if (!$this->router) { 981: throw new Nette\InvalidStateException('Unable to generate URL, service Router has not been set.'); 982: } 983: $url = $this->router->constructUrl($this->lastCreatedRequest, $refUrl); 984: if ($url === NULL) { 985: unset($args[self::ACTION_KEY]); 986: $params = urldecode(http_build_query($args, NULL, ', ')); 987: throw new InvalidLinkException("No route for $presenter:$action($params)");
    $appRequest
    
    
    $refUrl
    
    
  10. .../src/Application/UI/PresenterComponent.php:351 source  Nette\Application\UI\Presenter-> createRequest (arguments)

    341: if (!is_numeric($code)) { // first parameter is optional 342: $args = is_array($destination) ? $destination : array_slice(func_get_args(), 1); 343: $destination = $code; 344: $code = NULL; 345: 346: } elseif (!is_array($args)) { 347: $args = array_slice(func_get_args(), 2); 348: } 349: 350: $presenter = $this->getPresenter(); 351: $presenter->redirectUrl($presenter->createRequest($this, $destination, $args, 'redirect'), $code); 352: } 353: 354: 355: /********************* interface \ArrayAccess ****************d*g**/
    $component
    
    
    $destination
    ":Front:Product:detail" (21)
    
    $args
    
    
    $mode
    "redirect" (8)
    
  11. .../app/FrontModule/presenters/ProductPresenter.php:109 source  Nette\Application\UI\PresenterComponent-> redirect (arguments)

    99: } 100: $this->redirect(':Front:Order:default'); 101: }; 102: 103: $control->onAddedToCartAndRedirectToRelated[] = function ($productRowId, $cartItemId) { 104: if ($this->cartItemId && !$this->addingSpecialProduct) { 105: if ($this->checkCartItem($this->cartItemId)) { 106: $this->cartItemDao->delete($this->cartItemId); 107: } 108: } 109: $this->redirect(':Front:Product:detail', [$productRowId, $cartItemId, true]); 110: }; 111: 112: $control->onSavedAndRedirectToStudents[] = function ($productRowId, $cartItemId) { 113: if ($this->cartItemId && !$this->addingSpecialProduct) {
    $code
    NULL
    
    $destination
    ":Front:Product:detail" (21)
    
  12. inner-code FrontModule\ProductPresenter-> FrontModule\{closure} (arguments)

    #0
    NULL
    
    #1
    2
    
  13. .../test/vendor/nette/utils/src/Utils/Callback.php:76 source  call_user_func_array (arguments)

    66: } 67: 68: 69: /** 70: * Invokes callback with an array of parameters. 71: * @return mixed 72: */ 73: public static function invokeArgs($callable, array $args = array()) 74: { 75: self::check($callable); 76: return call_user_func_array($callable, $args); 77: } 78: 79: 80: /**
    $function_name
    
    
    $parameters
    
    
  14. .../test/vendor/nette/utils/src/Utils/ObjectMixin.php:60 source  Nette\Utils\Callback:: invokeArgs (arguments)

    50: 51: if ($name === '') { 52: throw new MemberAccessException("Call to class '$class' method without name."); 53: 54: } elseif ($isProp && $_this->$name instanceof \Closure) { // closure in property 55: return call_user_func_array($_this->$name, $args); 56: 57: } elseif ($isProp === 'event') { // calling event handlers 58: if (is_array($_this->$name) || $_this->$name instanceof \Traversable) { 59: foreach ($_this->$name as $handler) { 60: Callback::invokeArgs($handler, $args); 61: } 62: } elseif ($_this->$name !== NULL) { 63: throw new Nette\UnexpectedValueException("Property $class::$$name must be array or NULL, " . gettype($_this->$name) . ' given.'); 64: }
    $callable
    
    
    $args
    
    
  15. .../test/vendor/nette/utils/src/Utils/Object.php:75 source  Nette\Utils\ObjectMixin:: call (arguments)

    65: 66: /** 67: * Call to undefined method. 68: * @param string method name 69: * @param array arguments 70: * @return mixed 71: * @throws MemberAccessException 72: */ 73: public function __call($name, $args) 74: { 75: return ObjectMixin::call($this, $name, $args); 76: } 77: 78: 79: /**
    $_this
    
    
    $name
    "onAddedToCartAndRedirectToRelated" (33)
    
    $args
    
    
  16. .../Products/ProductDetail/ProductDetailControl.php:293 source  Nette\Object-> __call (arguments)

    283: 284: $control->onBuyAndAddRelated[] = function ($productRow, $properties, $amount) { 285: $this->selectedProperties = $properties; 286: $this->calculatedProductPrice = $this->products->calculateProductPrice($productRow, $properties, null, $amount); 287: try { 288: $this->cart->addItem($productRow->id, $amount, $properties); 289: 290: $cartItem = array_slice($this->cart->getItems(), -1, 1)[0]; 291: $specialProduct = $productRow->isSpecial() ? $productRow : $productRow->related('product', 'product_id')->fetch(); 292: 293: $this->onAddedToCartAndRedirectToRelated($specialProduct->id, $cartItem->id); 294: } catch (StockException $e) { 295: $this->onStockError($e->getMessage()); 296: } 297: };
    $name
    "onAddedToCartAndRedirectToRelated" (33)
    
    $args
    
    
  17. inner-code FrontModule\Products\ProductDetailControl-> FrontModule\Products\{closure} (arguments)

    #0
    
    
    #1
    
    
    #2
    21
    
  18. .../test/vendor/nette/utils/src/Utils/Callback.php:76 source  call_user_func_array (arguments)

    66: } 67: 68: 69: /** 70: * Invokes callback with an array of parameters. 71: * @return mixed 72: */ 73: public static function invokeArgs($callable, array $args = array()) 74: { 75: self::check($callable); 76: return call_user_func_array($callable, $args); 77: } 78: 79: 80: /**
    $function_name
    
    
    $parameters
    
    
  19. .../test/vendor/nette/utils/src/Utils/ObjectMixin.php:60 source  Nette\Utils\Callback:: invokeArgs (arguments)

    50: 51: if ($name === '') { 52: throw new MemberAccessException("Call to class '$class' method without name."); 53: 54: } elseif ($isProp && $_this->$name instanceof \Closure) { // closure in property 55: return call_user_func_array($_this->$name, $args); 56: 57: } elseif ($isProp === 'event') { // calling event handlers 58: if (is_array($_this->$name) || $_this->$name instanceof \Traversable) { 59: foreach ($_this->$name as $handler) { 60: Callback::invokeArgs($handler, $args); 61: } 62: } elseif ($_this->$name !== NULL) { 63: throw new Nette\UnexpectedValueException("Property $class::$$name must be array or NULL, " . gettype($_this->$name) . ' given.'); 64: }
    $callable
    
    
    $args
    
    
  20. .../test/vendor/nette/utils/src/Utils/Object.php:75 source  Nette\Utils\ObjectMixin:: call (arguments)

    65: 66: /** 67: * Call to undefined method. 68: * @param string method name 69: * @param array arguments 70: * @return mixed 71: * @throws MemberAccessException 72: */ 73: public function __call($name, $args) 74: { 75: return ObjectMixin::call($this, $name, $args); 76: } 77: 78: 79: /**
    $_this
    
    
    $name
    "onBuyAndAddRelated" (18)
    
    $args
    
    
  21. .../Products/ProductDetail/ProductBuyForm.php:232 source  Nette\Object-> __call (arguments)

    222: } 223: 224: if ($form['bf_recalculate_price']->isSubmittedBy()) { 225: $this->onRecalculate($this->productRow, $properties, $values['bf_amount']); 226: } else { 227: 228: $properties = $this->filterUnwantedProperties($properties); 229: 230: if ($form['bf_save_and_add_special']->isSubmittedBy()) { 231: $this->presenter->getSession('buyFormUploadedDocument')->remove(); 232: $this->onBuyAndAddRelated($this->productRow, $properties, $values['bf_amount']); 233: } else if ($form['bf_save_and_go_to_students']->isSubmittedBy()) { 234: $this->presenter->getSession('buyFormUploadedDocument')->remove(); 235: $this->onSaveAndGoToStudents($this->productRow, $properties, $values['bf_amount']); 236: } else if ($form['bf_save_and_go_to_special']->isSubmittedBy()) {
    $name
    "onBuyAndAddRelated" (18)
    
    $args
    
    
  22. inner-code FrontModule\Products\ProductBuyForm-> formSent (arguments)

    $form
    
    
    #1
    NULL
    
  23. .../test/vendor/nette/utils/src/Utils/Callback.php:65 source  call_user_func_array (arguments)

    55: } 56: 57: 58: /** 59: * Invokes callback. 60: * @return mixed 61: */ 62: public static function invoke($callable) 63: { 64: self::check($callable); 65: return call_user_func_array($callable, array_slice(func_get_args(), 1)); 66: } 67: 68: 69: /**
    $function_name
    
    
    $parameters
    
    
  24. .../test/vendor/nette/forms/src/Forms/Form.php:411 source  Nette\Utils\Callback:: invoke (arguments)

    401: if (!$this->isValid()) { 402: $this->onError($this); 403: 404: } elseif ($this->onSuccess !== NULL) { 405: if (!is_array($this->onSuccess) && !$this->onSuccess instanceof \Traversable) { 406: throw new Nette\UnexpectedValueException('Property Form::$onSuccess must be array or Traversable, ' . gettype($this->onSuccess) . ' given.'); 407: } 408: foreach ($this->onSuccess as $handler) { 409: $params = Nette\Utils\Callback::toReflection($handler)->getParameters(); 410: $values = isset($params[1]) ? $this->getValues($params[1]->isArray()) : NULL; 411: Nette\Utils\Callback::invoke($handler, $this, $values); 412: if (!$this->isValid()) { 413: $this->onError($this); 414: break; 415: }
    $callable
    
    
    #1
    
    
    #2
    NULL
    
  25. .../nette/application/src/Application/UI/Form.php:133 source  Nette\Forms\Form-> fireEvents ()

    123: 124: /** 125: * This method is called by presenter. 126: * @param string 127: * @return void 128: */ 129: public function signalReceived($signal) 130: { 131: if ($signal === 'submit') { 132: if (!$this->getPresenter()->getRequest()->hasFlag(Nette\Application\Request::RESTORED)) { 133: $this->fireEvents(); 134: } 135: } else { 136: $class = get_class($this); 137: throw new BadSignalException("Missing handler for signal '$signal' in $class.");
  26. .../nette/application/src/Application/UI/Presenter.php:324 source  Nette\Application\UI\Form-> signalReceived (arguments)

    314: } catch (Nette\InvalidArgumentException $e) { 315: } 316: 317: if (isset($e) || $component === NULL) { 318: throw new BadSignalException("The signal receiver component '$this->signalReceiver' is not found.", NULL, isset($e) ? $e : NULL); 319: 320: } elseif (!$component instanceof ISignalReceiver) { 321: throw new BadSignalException("The signal receiver component '$this->signalReceiver' is not ISignalReceiver implementor."); 322: } 323: 324: $component->signalReceived($this->signal); 325: $this->signal = NULL; 326: } 327: 328:
    $signal
    "submit" (6)
    
  27. .../nette/application/src/Application/UI/Presenter.php:201 source  Nette\Application\UI\Presenter-> processSignal ()

    191: 192: if ($this->autoCanonicalize) { 193: $this->canonicalize(); 194: } 195: if ($this->httpRequest->isMethod('head')) { 196: $this->terminate(); 197: } 198: 199: // SIGNAL HANDLING 200: // calls $this->handle<Signal>() 201: $this->processSignal(); 202: 203: // RENDERING VIEW 204: $this->beforeRender(); 205: // calls $this->render<View>()
  28. .../others/InnPress/Application/UI/Presenter.php:45 source  Nette\Application\UI\Presenter-> run (arguments)

    35: /** @var int @persistent */ 36: public $lang; 37: 38: /** @var string @persistent */ 39: public $backlink; 40: 41: public function run(Request $request) { 42: if ($this->errorPresenter) { 43: $this->application->errorPresenter = $this->errorPresenter; 44: } 45: return parent::run($request); 46: } 47: 48: /** 49: * @param string|array $message if array it must contain [$message, $args] for translator
    $request
    
    
  29. .../nette/application/src/Application/Application.php:141 source  InnPress\Application\UI\Presenter-> run (arguments)

    131: { 132: if (count($this->requests) > self::$maxLoop) { 133: throw new ApplicationException('Too many loops detected in application life cycle.'); 134: } 135: 136: $this->requests[] = $request; 137: $this->onRequest($this, $request); 138: 139: $this->presenter = $this->presenterFactory->createPresenter($request->getPresenterName()); 140: $this->onPresenter($this, $this->presenter); 141: $response = $this->presenter->run($request); 142: 143: if ($response instanceof Responses\ForwardResponse) { 144: $this->processRequest($response->getRequest()); 145:
    $request
    
    
  30. .../nette/application/src/Application/Application.php:81 source  Nette\Application\Application-> processRequest (arguments)

    71: 72: 73: /** 74: * Dispatch a HTTP request to a front controller. 75: * @return void 76: */ 77: public function run() 78: { 79: try { 80: $this->onStartup($this); 81: $this->processRequest($this->createInitialRequest()); 82: $this->onShutdown($this); 83: 84: } catch (\Exception $e) { 85: $this->onError($this, $e);
    $request
    
    
  31. /var/www/promaturak.cz/test/www/index.php:8 source  Nette\Application\Application-> run ()

    1: <?php 2: 3: // Uncomment this line if you must temporarily take down your site for maintenance. 4: // require '.maintenance.php'; 5: 6: $container = require __DIR__ . '/../app/bootstrap.php'; 7: 8: $container->getService('application')->run(); 9:

Nette Application

Requests


Presenter


		

Environment

$_SERVER

USER
"www-data" (8)
HOME
"/var/www" (8)
SCRIPT_NAME
"/index.php" (10)
REQUEST_URI
"/cs/produkty/champagne-480" (26)
QUERY_STRING
""
REQUEST_METHOD
"POST" (4)
SERVER_PROTOCOL
"HTTP/1.1" (8)
GATEWAY_INTERFACE
"CGI/1.1" (7)
REDIRECT_URL
"/cs/produkty/champagne-480" (26)
REMOTE_PORT
"49561" (5)
SCRIPT_FILENAME
"//var/www/promaturak.cz/test/www/index.php" (42)
SERVER_ADMIN
"[no address given]" (18)
CONTEXT_DOCUMENT_ROOT
"/var/www/promaturak.cz/test/www" (31)
CONTEXT_PREFIX
""
REQUEST_SCHEME
"https" (5)
DOCUMENT_ROOT
"/var/www/promaturak.cz/test/www" (31)
REMOTE_ADDR
"2a02:768:de0f:95ca:f534:5990:ba3f:ca22" (38)
SERVER_PORT
"443" (3)
SERVER_ADDR
"2001:1528:250::5100:ef6b" (24)
SERVER_NAME
"test.promaturak.cz" (18)
SERVER_SOFTWARE
"Apache/2.4.56 (Debian)" (22)
SERVER_SIGNATURE
"<address>Apache/2.4.56 (Debian) Server at test.promaturak.cz Port 443</address>
" (80)
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" (60)
HTTP_COOKIE
"_ga=GA1.1.1644340050.1708339346; _fbp=fb.1.1708339346357.1324184141; nette-browser=sirtdt69ci; PHPSESSID=f6nir28kc9c08e0piotc0e2jev; NMGTM.firstReferr ... " (368)
HTTP_ACCEPT_LANGUAGE
"cs-CZ,cs;q=0.9,en;q=0.8" (23)
HTTP_ACCEPT_ENCODING
"gzip, deflate, br, zstd" (23)
HTTP_REFERER
"https://test.promaturak.cz/cs/produkty/champagne-480" (52)
HTTP_SEC_FETCH_DEST
"empty" (5)
HTTP_SEC_FETCH_MODE
"cors" (4)
HTTP_SEC_FETCH_SITE
"same-origin" (11)
HTTP_ORIGIN
"https://test.promaturak.cz" (26)
HTTP_SEC_CH_UA_PLATFORM
""Windows"" (9)
HTTP_USER_AGENT
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36" (111)
HTTP_SEC_CH_UA_MOBILE
"?0" (2)
HTTP_X_REQUESTED_WITH
"XMLHttpRequest" (14)
CONTENT_TYPE
"multipart/form-data; boundary=----WebKitFormBoundary9GknrjEYyFMajBtS" (68)
HTTP_ACCEPT
"*/*" (3)
HTTP_SEC_CH_UA
""Google Chrome";v="123", "Not:A-Brand";v="8", "Chromium";v="123"" (64)
CONTENT_LENGTH
"1821" (4)
HTTP_CONNECTION
"keep-alive" (10)
HTTP_HOST
"test.promaturak.cz" (18)
proxy-nokeepalive
"1"
SSL_TLS_SNI
"test.promaturak.cz" (18)
HTTPS
"on" (2)
proto
"https" (5)
SCRIPT_URI
"https://test.promaturak.cz/cs/produkty/champagne-480" (52)
SCRIPT_URL
"/cs/produkty/champagne-480" (26)
REDIRECT_STATUS
"200" (3)
REDIRECT_SSL_TLS_SNI
"test.promaturak.cz" (18)
REDIRECT_HTTPS
"on" (2)
REDIRECT_proto
"https" (5)
REDIRECT_SCRIPT_URI
"https://test.promaturak.cz/cs/produkty/champagne-480" (52)
REDIRECT_SCRIPT_URL
"/cs/produkty/champagne-480" (26)
FCGI_ROLE
"RESPONDER" (9)
PHP_SELF
"/index.php" (10)
REQUEST_TIME_FLOAT
1713172801.060785
REQUEST_TIME
1713172801

$_SESSION

__NFNette Session
KCFINDER

Nette Session

dev-module

currency

Nette.Http.UserStorage/

cart

Nette.Application/requests
array ()
Admin-Categoryordering
NULL
Admin-Categorypager
NULL
Admin-Categoryselection
NULL
Admin-Categorytranslator
NULL
Admin-Categoryfilter

Admin-Categorysortable
NULL
Admin-Propertyordering
NULL
Admin-Propertypager
NULL
Admin-Propertyselection
NULL
Admin-Propertytranslator
NULL
Admin-Propertyfilter

Admin-Propertyeditable
NULL
Admin-PropertyOptionordering
NULL
Admin-PropertyOptionpager
NULL
Admin-PropertyOptionselection
NULL
Admin-PropertyOptiontranslator
NULL
Admin-PropertyOptionfilter

Admin-PropertyOptioneditable
NULL
Admin-ServiceOrdergridtranslator
NULL
Admin-ServiceOrdergridordering
NULL
Admin-ServiceOrdergridpager
NULL
Admin-ServiceOrdergridselection
NULL
Admin-ServiceOrdergridfilter

defaultLanguage

Admin-Pageordering
NULL
Admin-Pagepager
NULL
Admin-Pageselection
NULL
Admin-Pagetranslator
NULL
Admin-Pagefilter

Admin-Pagesortable
NULL
buyFormUploadedDocument
NULL

Constants

ROOT_DIR
"/var/www/promaturak.cz/test" (27)
APP_DIR
"/var/www/promaturak.cz/test/app" (31)
LIBS_DIR
"/var/www/promaturak.cz/test/vendor/others" (41)
LOG_DIR
"/var/www/promaturak.cz/test/log" (31)
TEMP_DIR
"/var/www/promaturak.cz/test/temp" (32)
CACHE_DIR
"/var/www/promaturak.cz/test/temp/cache" (38)
WWW_DIR
"/var/www/promaturak.cz/test/www" (31)
NETTE_DIR
"/var/www/promaturak.cz/test/vendor/nette" (40)
KDYBY_TO_DOCTRINE_EVENTS
1

Included files (389)

/var/www/promaturak.cz/test/www/index.php
/var/www/promaturak.cz/test/app/bootstrap.php
/var/www/promaturak.cz/test/vendor/autoload.php
/var/www/promaturak.cz/test/vendor/composer/autoload_real.php
/var/www/promaturak.cz/test/vendor/composer/ClassLoader.php
/var/www/promaturak.cz/test/vendor/composer/autoload_namespaces.php
/var/www/promaturak.cz/test/vendor/composer/autoload_psr4.php
/var/www/promaturak.cz/test/vendor/composer/autoload_classmap.php
/var/www/promaturak.cz/test/vendor/composer/autoload_files.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/shortcuts.php
/var/www/promaturak.cz/test/vendor/nette/safe-stream/src/loader.php
/var/www/promaturak.cz/test/vendor/nette/safe-stream/src/SafeStream/SafeStream.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/loader.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/Loaders/NetteLoader.php
/var/www/promaturak.cz/test/vendor/nette/bootstrap/src/Bootstrap/Configurator.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Object.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/CompilerExtension.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/Bar.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/BlueScreen.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/Dumper.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/exceptions.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/IMacro.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Macros/MacroSet.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Object.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/ArrayHash.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/ArrayList.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/DateTime.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Image.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/ObjectMixin.php
/var/www/promaturak.cz/test/vendor/nette/neon/src/Neon/Exception.php
/var/www/promaturak.cz/test/vendor/nette/neon/src/Neon/Entity.php
/var/www/promaturak.cz/test/vendor/nette/neon/src/Neon/Neon.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/shortcuts.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Doctrine/compatibility.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/utils.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Config/Configurator.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/Debugger.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/ILogger.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/DefaultBarPanel.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/IBarPanel.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/FireLogger.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/Helpers.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/Logger.php
/var/www/promaturak.cz/test/vendor/nette/robot-loader/src/RobotLoader/RobotLoader.php
/var/www/promaturak.cz/test/vendor/nette/caching/src/Caching/Storages/FileStorage.php
/var/www/promaturak.cz/test/vendor/nette/caching/src/Caching/IStorage.php
/var/www/promaturak.cz/test/vendor/nette/caching/src/Caching/Cache.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/ContainerLoader.php
/var/www/promaturak.cz/test/temp/cache/Nette.Configurator/Container_188cca9cb9.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/Container.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/OrderForms/AddressForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Control.php
/var/www/promaturak.cz/test/app/controls/Control.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/UI/Control.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/Control.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/PresenterComponent.php
/var/www/promaturak.cz/test/vendor/nette/component-model/src/ComponentModel/Container.php
/var/www/promaturak.cz/test/vendor/nette/component-model/src/ComponentModel/Component.php
/var/www/promaturak.cz/test/vendor/nette/component-model/src/ComponentModel/IComponent.php
/var/www/promaturak.cz/test/vendor/nette/component-model/src/ComponentModel/IContainer.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/ISignalReceiver.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/IStatePersistent.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/IRenderable.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/OrderForms/CartItemForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/CategoryForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/LangForm/LangForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/CurrencyForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/DeliveryForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/BaseProductForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/DiscountForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/GalleryForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/LangAdminForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/LocationForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/LoginForm/LoginForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/MenuForm/MenuForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/OrderForms/MethodsForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/OrderForms/OrderForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/PageForm/PageForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/PaymentForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/ProductForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductPropertiesForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductRuleForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ProductForms/PropertiesCopyForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/PropertyForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/PropertyOptionForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/ServiceOrderForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/TagForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/TranslationForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/UserForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Forms/VatForm.php
/var/www/promaturak.cz/test/app/AdminModule/components/Grid/AdminGrid.php
/var/www/promaturak.cz/test/vendor/mesour/datagrid/src/Grid/Grid.php
/var/www/promaturak.cz/test/vendor/mesour/datagrid/src/Grid/ExtendedGrid.php
/var/www/promaturak.cz/test/vendor/mesour/datagrid/src/Grid/BasicGrid.php
/var/www/promaturak.cz/test/vendor/mesour/datagrid/src/Grid/BaseGrid.php
/var/www/promaturak.cz/test/app/AdminModule/components/Grid/AdminGridTree.php
/var/www/promaturak.cz/test/vendor/mesour/datagrid/src/Grid/GridTree.php
/var/www/promaturak.cz/test/app/AdminModule/components/DefaultEditLanguageSwitcher/DefaultEditLanguageSwitcherControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Cart/CartControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Control.php
/var/www/promaturak.cz/test/app/FrontModule/components/Categories/CategoryList/CategoryListControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Currency/CurrencyControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Export/HeurekaControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Export/ZboziControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/ChangePasswordForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/ConfiguratorServiceOrderForm/ConfiguratorServiceOrderForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/ContestForm/ContestForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/DeliveryMethodControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/FacebookControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/LoginForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/OrderService/OrderServiceForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/PasswordResetRequestForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/PaymentMethodControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/PerformersFilter/PerformersFilterForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/ServiceOrderConfirmForm/ServiceOrderConfirmForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/UserForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/CredentialsControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Language/LanguageSwitcherControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Forms/ProfileFormControl.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/UI/CompositeFormControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Menu/MenuControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Order/OrderFormControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductDetail/ProductBuyForm.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductDetail/ProductDetailControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductList/ProductListControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductList/ProductListFilters/ProductListFiltersControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Searching/RedirectSearchControl.php
/var/www/promaturak.cz/test/app/FrontModule/components/Searching/SearchControl.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationLatte/ILatteFactory.php
/var/www/promaturak.cz/test/vendor/nette/php-generator/src/PhpGenerator/Helpers.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/Statement.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/LazyEventManager.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/EventManager.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/Diagnostics/Panel.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/Event.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Callback.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/EventArgsList.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/EventArgs.php
/var/www/promaturak.cz/test/vendor/nette/reflection/src/Reflection/AnnotationsParser.php
/var/www/promaturak.cz/test/vendor/nette/caching/src/Caching/Storages/FileJournal.php
/var/www/promaturak.cz/test/vendor/nette/caching/src/Caching/Storages/IJournal.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/Session.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/RequestFactory.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/UrlScript.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/Url.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Strings.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/Request.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/IRequest.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/Response.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/IResponse.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/Helpers.php
/var/www/promaturak.cz/test/vendor/nette/security/src/Security/Identity.php
/var/www/promaturak.cz/test/vendor/nette/security/src/Security/IIdentity.php
/var/www/promaturak.cz/test/vendor/markette/gopay/src/Gopay/Service.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Container.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Addons/UploadControl.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/UploadControl.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/BaseControl.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/IControl.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Addons/MultiUploadControl.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/Environment.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/Router.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/Routers/RouteList.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/IRouter.php
/var/www/promaturak.cz/test/app/CronModule/Routes.php
/var/www/promaturak.cz/test/app/model/routes/LangRouteList.php
/var/www/promaturak.cz/test/app/model/services/Languages.php
/var/www/promaturak.cz/test/app/model/daos/LangDao.php
/var/www/promaturak.cz/test/app/model/daos/Dao.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Connection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/SqlPreprocessor.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/Diagnostics/Debugger.php
/var/www/promaturak.cz/test/app/model/SelectionFactory.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Database/SelectionFactory.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Selections/SelectionFactory.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Selections/ISelectionFactory.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Translator.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/ITranslator.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/CatalogueBuilder.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/ICatalogueBuilder.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Providers/FileScanningProvider.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/IProvider.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Providers/LongTextsProvider.php
/var/www/promaturak.cz/test/app/model/translator/DatabaseProvider.php
/var/www/promaturak.cz/test/app/model/daos/TranslationDao.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Filters/PluralFilter.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/IFilter.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Filters/LinkFilter.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Filters/ExpandParamsFilter.php
/var/www/promaturak.cz/test/app/model/Language.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Selections/Selection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/IQueryObject.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/QueryContext.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Reflections/DiscoveredReflection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Reflections/IReflection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/SelectQuery.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/JoinableQuery.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/Query.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Helpers.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Statement.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/TransactionCounter.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Drivers/MySqlDriver.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Drivers/IDriver.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Row.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Hydrators/HydratorSelection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Hydrators/Hydrator.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Utils/Strings.php
/var/www/promaturak.cz/test/app/model/rows/LangRow.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Database/ActiveRow.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Selections/ActiveRow.php
/var/www/promaturak.cz/test/app/GopayModule/Routes.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/Routers/Route.php
/var/www/promaturak.cz/test/app/AdminModule/Routes.php
/var/www/promaturak.cz/test/app/FrontModule/Routes.php
/var/www/promaturak.cz/test/app/model/daos/ProductDao.php
/var/www/promaturak.cz/test/app/model/daos/CategoryDao.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Router/Factory.php
/var/www/promaturak.cz/test/app/FrontModule/OldPromaturakRouter.php
/var/www/promaturak.cz/test/vendor/innetic/dev-module/src/DevModule/model/Config.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/SessionSection.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/Application.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/PresenterFactory.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/PresenterFactory.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/IPresenterFactory.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationDI/PresenterFactoryCallback.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationTracy/RoutingPanel.php
/var/www/promaturak.cz/test/app/model/routes/LocalizedRoute.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Application/Routers/FilterRoute.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Translator/Catalogue.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Utils/Arrays.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Arrays.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/Request.php
/var/www/promaturak.cz/test/app/FrontModule/presenters/ProductPresenter.php
/var/www/promaturak.cz/test/app/FrontModule/presenters/FrontPresenter.php
/var/www/promaturak.cz/test/app/presenters/Presenter.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/UI/Presenter.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/Presenter.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/IPresenter.php
/var/www/promaturak.cz/test/vendor/kdyby/autowired/src/Kdyby/Autowired/AutowireProperties.php
/var/www/promaturak.cz/test/vendor/kdyby/autowired/src/Kdyby/Autowired/AutowireComponentFactories.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Traits/TPresenter.php
/var/www/promaturak.cz/test/app/model/LanguagesListener.php
/var/www/promaturak.cz/test/vendor/kdyby/events/src/Kdyby/Events/Subscriber.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Storage.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Connectors/Manager.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Connectors/Localhost.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Connectors/IConnector.php
/var/www/promaturak.cz/test/vendor/nette/reflection/src/Reflection/ClassType.php
/var/www/promaturak.cz/test/vendor/nette/security/src/Security/User.php
/var/www/promaturak.cz/test/vendor/nette/security/src/Security/IUserStorage.php
/var/www/promaturak.cz/test/vendor/nette/http/src/Http/UserStorage.php
/var/www/promaturak.cz/test/app/model/TemplateFactory.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationLatte/TemplateFactory.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/ITemplateFactory.php
/var/www/promaturak.cz/test/app/model/services/Currencies.php
/var/www/promaturak.cz/test/app/model/daos/CurrencyDao.php
/var/www/promaturak.cz/test/app/model/Currency.php
/var/www/promaturak.cz/test/app/model/rows/CurrencyRow.php
/var/www/promaturak.cz/test/app/model/services/Vats.php
/var/www/promaturak.cz/test/app/model/daos/VatDao.php
/var/www/promaturak.cz/test/app/model/Calculators/PriceStrategies/VatPriceStrategy.php
/var/www/promaturak.cz/test/app/model/Calculators/PriceStrategies/IPriceStrategy.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/LinkGenerator.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/PresenterComponentReflection.php
/var/www/promaturak.cz/test/app/FrontModule/components/Form.php
/var/www/promaturak.cz/test/app/controls/Forms/Form.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/UI/Form.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/Form.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Form.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/IHtmlString.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Validator.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/CsrfProtection.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/HiddenField.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/SelectBox.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/ChoiceControl.php
/var/www/promaturak.cz/test/app/model/services/Settings.php
/var/www/promaturak.cz/test/app/model/daos/SettingDao.php
/var/www/promaturak.cz/test/app/model/Setting.php
/var/www/promaturak.cz/test/app/model/rows/SettingsRow.php
/var/www/promaturak.cz/test/app/model/rows/LocalizedRow.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Engine.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Html.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Macros/Macros.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Compiler.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Macros/CoreMacros.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Helpers.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Macros/BlockMacros.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationLatte/Template.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/ITemplate.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Bridges/ApplicationLatte/Loader.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/Loaders/FileLoader.php
/var/www/promaturak.cz/test/vendor/latte/latte/src/Latte/ILoader.php
/var/www/promaturak.cz/test/vendor/others/Innetic/WebLoader/Loader.php
/var/www/promaturak.cz/test/vendor/nette/reflection/src/Reflection/Method.php
/var/www/promaturak.cz/test/vendor/nette/reflection/src/Reflection/Parameter.php
/var/www/promaturak.cz/test/app/model/services/Products.php
/var/www/promaturak.cz/test/app/model/daos/ProductPriceDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductCategoryDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductPropertyDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductPropertyOptionDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductPropertyOptionProductImageDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductPropertyOptionImpactDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductPropertyOptionImpactPriceDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductRulePropertyOptionDao.php
/var/www/promaturak.cz/test/app/model/services/Categories.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Flunorette/MnRelationFactory.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/ChainCalculator.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/ICalculator.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/RawProductPrice.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/PriceImpactedByProperties.php
/var/www/promaturak.cz/test/app/model/Products/ProductPropertyOptionResolver.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/PriceImpactedByRules.php
/var/www/promaturak.cz/test/app/model/Products/ProductRuleResolver.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/PromaturakAmountFees.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/PromaturakRozliseniSerpyFees.php
/var/www/promaturak.cz/test/app/model/Calculators/Product/PromaturakExpressProductionFees.php
/var/www/promaturak.cz/test/app/model/rows/ProductRow.php
/var/www/promaturak.cz/test/app/model/rows/PriceableRowTrait.php
/var/www/promaturak.cz/test/app/model/Calculators/IPriceable.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Selections/GroupedSelection.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Reflections/ReflectionException.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/exceptions.php
/var/www/promaturak.cz/test/app/model/rows/ProductCategoryRow.php
/var/www/promaturak.cz/test/app/model/rows/CategoryRow.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/Helpers.php
/var/www/promaturak.cz/test/vendor/nette/di/src/DI/PhpReflection.php
/var/www/promaturak.cz/test/app/model/Cart/CartFactory.php
/var/www/promaturak.cz/test/app/model/services/Carts.php
/var/www/promaturak.cz/test/app/model/daos/CartDao.php
/var/www/promaturak.cz/test/app/model/daos/CartItemDao.php
/var/www/promaturak.cz/test/app/model/daos/CartItemPropertyOptionDao.php
/var/www/promaturak.cz/test/app/model/daos/OrderDao.php
/var/www/promaturak.cz/test/app/model/Products/StockManager.php
/var/www/promaturak.cz/test/app/model/exceptions.php
/var/www/promaturak.cz/test/app/model/rows/CartRow.php
/var/www/promaturak.cz/test/app/model/Cart/Cart.php
/var/www/promaturak.cz/test/app/model/services/Images.php
/var/www/promaturak.cz/test/app/model/daos/ImageDao.php
/var/www/promaturak.cz/test/app/model/daos/ProductImageDao.php
/var/www/promaturak.cz/test/app/model/daos/GalleryDao.php
/var/www/promaturak.cz/test/app/model/daos/GalleryImageDao.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductRenderer/PromaturakProductRenderer.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductRenderer/AbstractProductRenderer.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductRenderer/IProductRenderer.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductDetail/MaturitniSerpyTaftoveBuyFormRenderer.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductDetail/SpecialProductBuyFormRenderer.php
/var/www/promaturak.cz/test/app/FrontModule/components/Products/ProductDetail/DefaultBuyFormRenderer.php
/var/www/promaturak.cz/test/vendor/others/InnPress/Application/UI/ITemplateRenderer.php
/var/www/promaturak.cz/test/vendor/nette/component-model/src/ComponentModel/RecursiveComponentIterator.php
/var/www/promaturak.cz/test/vendor/nextras/forms/src/Rendering/Bs3FormRenderer.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Rendering/DefaultFormRenderer.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/IFormRenderer.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/TextInput.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/TextBase.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Rules.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Rule.php
/var/www/promaturak.cz/test/app/model/rows/ProductPropertyRow.php
/var/www/promaturak.cz/test/app/model/rows/PropertyRow.php
/var/www/promaturak.cz/test/app/model/rows/PropertyOptionRow.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/RadioList.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/CheckboxList.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/MultiChoiceControl.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/TextArea.php
/var/www/promaturak.cz/test/app/model/rows/ImageRow.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Image/Image.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Image/Container.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Image/PropertyAccess.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Image/IImage.php
/var/www/promaturak.cz/test/vendor/webchemistry/images/src/Image/Info.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/SubmitButton.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Controls/Button.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/ISubmitterControl.php
/var/www/promaturak.cz/test/vendor/nette/forms/src/Forms/Helpers.php
/var/www/promaturak.cz/test/vendor/nette/application/src/Application/UI/Link.php
/var/www/promaturak.cz/test/vendor/nette/utils/src/Utils/Validators.php
/var/www/promaturak.cz/test/app/model/rows/ProductPriceRow.php
/var/www/promaturak.cz/test/app/model/rows/ProductPropertyOptionRow.php
/var/www/promaturak.cz/test/app/model/rows/ProductPropertyOptionImpactRow.php
/var/www/promaturak.cz/test/app/model/rows/ProductPropertyOptionImpactPriceRow.php
/var/www/promaturak.cz/test/app/model/rows/CartItemRow.php
/var/www/promaturak.cz/test/app/model/rows/CartItemPropertyOptionRow.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Hydrators/HydratorField.php
/var/www/promaturak.cz/test/app/model/rows/VatRow.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/InsertQuery.php
/var/www/promaturak.cz/test/vendor/others/Innetic/Nette/Utils/DateTime.php
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Queries/UpdateQuery.php
/var/www/promaturak.cz/test/vendor/tracy/tracy/src/Tracy/assets/BlueScreen/bluescreen.phtml
/var/www/promaturak.cz/test/vendor/icaine/flunorette/src/Bridges/Nette/Diagnostics/ConnectionPanel.php
/var/www/promaturak.cz/test/vendor/nette/deprecated/src/Diagnostics/IBarPanel.php

Configuration options


Configuration

calendar

Calendar support enabled

cgi-fcgi

php-fpm active
DirectiveLocal ValueMaster Value
cgi.discard_path00
cgi.fix_pathinfo11
cgi.force_redirect11
cgi.nph00
cgi.redirect_status_envno valueno value
cgi.rfc2616_headers00
fastcgi.error_headerno valueno value
fastcgi.logging11
fpm.configno valueno value

Core

PHP Version 7.1.33-44+0~20211119.61+debian11~1.gbp448fbe
DirectiveLocal ValueMaster Value
allow_url_fopenOnOn
allow_url_includeOffOff
arg_separator.input&&
arg_separator.output&&
auto_append_fileno valueno value
auto_globals_jitOnOn
auto_prepend_fileno valueno value
browscapno valueno value
default_charsetUTF-8UTF-8
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionspcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
display_errorsOffOff
display_startup_errorsOffOff
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOffOff
enable_post_data_readingOnOn
error_append_stringno valueno value
error_logno valueno value
error_prepend_stringno valueno value
error_reporting3276722527
expose_phpOffOff
extension_dir/usr/lib/php/20160303/usr/lib/php/20160303
file_uploadsOnOn
hard_timeout22
highlight.comment#998; font-style: italic#FF8000
highlight.default#000#0000BB
highlight.html#06B#000000
highlight.keyword#D24; font-weight: bold#007700
highlight.string#080#DD0000
html_errorsOffOn
ignore_repeated_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.:/usr/share/php.:/usr/share/php
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
log_errors_max_len10241024
mail.add_x_headerOffOff
mail.force_extra_parametersno valueno value
mail.logno valueno value
max_execution_time3030
max_file_uploads2020
max_input_nesting_level6464
max_input_time6060
max_input_vars10001000
memory_limit128M128M
open_basedirno valueno value
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size256M256M
precision1414
realpath_cache_size4096K4096K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOnOn
request_orderGPGP
sendmail_fromno valueno value
sendmail_path/usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i 
serialize_precision-1-1
short_open_tagOffOff
SMTPlocalhostlocalhost
smtp_port2525
sql.safe_modeOffOff
sys_temp_dirno valueno value
track_errorsOffOff
unserialize_callback_funcno valueno value
upload_max_filesize256M256M
upload_tmp_dirno valueno value
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.assertions-1-1
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.multibyteOffOff
zend.script_encodingno valueno value
zend.signal_checkOffOff

ctype

ctype functions enabled

curl

cURL support enabled
cURL Information 7.74.0
Age 7
Features
AsynchDNS Yes
CharConv No
Debug No
GSS-Negotiate No
IDN Yes
IPv6 Yes
krb4 No
Largefile Yes
libz Yes
NTLM Yes
NTLMWB Yes
SPNEGO Yes
SSL Yes
SSPI No
TLS-SRP Yes
HTTP2 Yes
GSSAPI Yes
KERBEROS5 Yes
UNIX_SOCKETS Yes
PSL Yes
Protocols dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, mqtt, pop3, pop3s, rtmp, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp
Host x86_64-pc-linux-gnu
SSL Version OpenSSL/1.1.1n
ZLib Version 1.2.11
libSSH Version libssh2/1.9.0

date

date/time support enabled
timelib version 2016.05
"Olson" Timezone Database Version 0.system
Timezone Database internal
Default timezone Europe/Prague
DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.58333390.583333
date.sunset_zenith90.58333390.583333
date.timezoneEurope/PragueEurope/Prague

dom

DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.9.12
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled

exif

EXIF Support enabled
EXIF Version 7.1.33-44+0~20211119.61+debian11~1.gbp448fbe
Supported EXIF Version 0220
Supported filetypes JPEG,TIFF
DirectiveLocal ValueMaster Value
exif.decode_jis_intelJISJIS
exif.decode_jis_motorolaJISJIS
exif.decode_unicode_intelUCS-2LEUCS-2LE
exif.decode_unicode_motorolaUCS-2BEUCS-2BE
exif.encode_jisno valueno value
exif.encode_unicodeISO-8859-15ISO-8859-15

fileinfo

fileinfo support enabled
version 1.0.5
libmagic 522

filter

Input Validation and Filtering enabled
Revision $Id: 5a34caaa246b9df197f4b43af8ac66a07464fe4b $
DirectiveLocal ValueMaster Value
filter.defaultunsafe_rawunsafe_raw
filter.default_flagsno valueno value

ftp

FTP support enabled
FTPS support enabled

gd

GD Support enabled
GD headers Version 2.3.0
GD library Version 2.3.0
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.10.4
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
libJPEG Version 6b
PNG Support enabled
libPNG Version 1.6.37
WBMP Support enabled
XPM Support enabled
libXpm Version 30411
XBM Support enabled
WebP Support enabled
DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warning11

gettext

GetText Support enabled

hash

hash support enabled
Hashing Engines md2 md4 md5 sha1 sha224 sha256 sha384 sha512/224 sha512/256 sha512 sha3-224 sha3-256 sha3-384 sha3-512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b fnv132 fnv1a32 fnv164 fnv1a64 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
MHASH support Enabled
MHASH API Version Emulated Support

iconv

iconv support enabled
iconv implementation glibc
iconv library version 2.31
DirectiveLocal ValueMaster Value
iconv.input_encodingno valueno value
iconv.internal_encodingno valueno value
iconv.output_encodingno valueno value

igbinary

igbinary support enabled
igbinary version 3.2.6
igbinary APCu serializer ABI 0
igbinary session support yes
DirectiveLocal ValueMaster Value
igbinary.compact_stringsOnOn

imagick

imagick moduleenabled
imagick module version 3.5.1
imagick classes Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel
Imagick compiled with ImageMagick version ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.org
Imagick using ImageMagick library version ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25 https://imagemagick.org
ImageMagick copyright (C) 1999-2021 ImageMagick Studio LLC
ImageMagick release date 2021-01-25
ImageMagick number of supported formats: 237
ImageMagick supported formats 3FR, 3G2, 3GP, AAI, AI, APNG, ART, ARW, AVI, AVIF, AVS, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DNG, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, H, HALD, HDR, HEIC, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAGICK, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPG, MRW, MSL, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIDEO, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMV, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV
DirectiveLocal ValueMaster Value
imagick.allow_zero_dimension_images00
imagick.locale_fix00
imagick.progress_monitor00
imagick.set_single_thread11
imagick.shutdown_sleep_count1010
imagick.skip_version_check11

imap

IMAP c-Client Version 2007f
SSL Support enabled
Kerberos Support enabled
DirectiveLocal ValueMaster Value
imap.enable_insecure_rshOffOff

json

json support enabled
json version 1.5.0

libxml

libXML support active
libXML Compiled Version 2.9.12
libXML Loaded Version 20912
libXML streams enabled

mbstring

Multibyte Support enabled
Multibyte string engine libmbfl
HTTP input encoding translation disabled
libmbfl version 1.3.2
oniguruma version 5.9.6
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
Multibyte (japanese) regex support enabled
Multibyte regex (oniguruma) backtrack check On
Multibyte regex (oniguruma) version 5.9.6
DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
mbstring.func_overload00
mbstring.http_inputno valueno value
mbstring.http_outputno valueno value
mbstring.http_output_conv_mimetypes^(text/|application/xhtml\+xml)^(text/|application/xhtml\+xml)
mbstring.internal_encodingno valueno value
mbstring.languageneutralneutral
mbstring.strict_detectionOffOff
mbstring.substitute_characterno valueno value

mcrypt

mcrypt supportenabled
mcrypt_filter supportenabled
Version 2.5.8
Api No 20021217
Supported ciphers cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes
Supported modes cbc cfb ctr ecb ncfb nofb ofb stream
DirectiveLocal ValueMaster Value
mcrypt.algorithms_dirno valueno value
mcrypt.modes_dirno valueno value

memcache

memcache supportenabled
Version 4.0.5.2
Revision $Revision$
DirectiveLocal ValueMaster Value
memcache.allow_failover11
memcache.chunk_size3276832768
memcache.compress_threshold2000020000
memcache.default_port1121111211
memcache.hash_functioncrc32crc32
memcache.hash_strategyconsistentconsistent
memcache.lock_timeout1515
memcache.max_failover_attempts2020
memcache.prefix_host_key00
memcache.prefix_host_key_remove_subdomain00
memcache.prefix_host_key_remove_www11
memcache.prefix_static_keyno valueno value
memcache.protocolasciiascii
memcache.redundancy11
memcache.session_prefix_host_key00
memcache.session_prefix_host_key_remove_subdomain00
memcache.session_prefix_host_key_remove_www11
memcache.session_prefix_static_keyno valueno value
memcache.session_redundancy22
memcache.session_save_pathno valueno value

mysqli

MysqlI Supportenabled
Client API library version mysqlnd 5.0.12-dev - 20150407 - $Id: 38fea24f2847fa7519001be390c98ae0acafe387 $
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 0
DirectiveLocal ValueMaster Value
mysqli.allow_local_infileOnOn
mysqli.allow_persistentOnOn
mysqli.default_hostno valueno value
mysqli.default_port33063306
mysqli.default_pwno valueno value
mysqli.default_socketno valueno value
mysqli.default_userno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.reconnectOffOff
mysqli.rollback_on_cached_plinkOffOff

mysqlnd

mysqlndenabled
Version mysqlnd 5.0.12-dev - 20150407 - $Id: 38fea24f2847fa7519001be390c98ae0acafe387 $
Compression supported
core SSL supported
extended SSL supported
Command buffer size 4096
Read buffer size 32768
Read timeout 31536000
Collecting statistics Yes
Collecting memory statistics No
Tracing n/a
Loaded plugins mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password,auth_plugin_sha256_password
API Extensions mysqli,pdo_mysql
mysqlnd statistics
bytes_sent 122349149
bytes_received 408633839
packets_sent 354718
packets_received 4386202
protocol_overhead_in 17544808
protocol_overhead_out 1418872
bytes_received_ok_packet 0
bytes_received_eof_packet 0
bytes_received_rset_header_packet 1408923
bytes_received_rset_field_meta_packet 0
bytes_received_rset_row_packet 789376
bytes_received_prepare_response_packet 291055030
bytes_received_change_user_packet 113296406
packets_sent_command 167112
packets_received_ok 0
packets_received_eof 0
packets_received_rset_header 156547
packets_received_rset_field_meta 0
packets_received_rset_row 156866
packets_received_prepare_response 3598871
packets_received_change_user 453424
result_set_queries 156547
non_result_set_queries 319
no_index_used 77165
bad_index_used 0
slow_queries 0
buffered_sets 156547
unbuffered_sets 0
ps_buffered_sets 0
ps_unbuffered_sets 0
flushed_normal_sets 0
flushed_ps_sets 0
ps_prepared_never_executed 0
ps_prepared_once_executed 0
rows_fetched_from_server_normal 296877
rows_fetched_from_server_ps 0
rows_buffered_from_client_normal 296877
rows_buffered_from_client_ps 0
rows_fetched_from_client_normal_buffered 296877
rows_fetched_from_client_normal_unbuffered 0
rows_fetched_from_client_ps_buffered 0
rows_fetched_from_client_ps_unbuffered 0
rows_fetched_from_client_ps_cursor 0
rows_affected_normal 154
rows_affected_ps 0
rows_skipped_normal 296877
rows_skipped_ps 0
copy_on_write_saved 0
copy_on_write_performed 0
command_buffer_too_small 1
connect_success 10247
connect_failure 0
connection_reused 0
reconnect 0
pconnect_success 0
active_connections 18446744073709541371
active_persistent_connections 0
explicit_close 10246
implicit_close 0
disconnect_close 0
in_middle_of_command_close 0
explicit_free_result 156418
implicit_free_result 0
explicit_stmt_close 0
implicit_stmt_close 0
mem_emalloc_count 0
mem_emalloc_amount 0
mem_ecalloc_count 0
mem_ecalloc_amount 0
mem_erealloc_count 0
mem_erealloc_amount 0
mem_efree_count 0
mem_efree_amount 0
mem_malloc_count 0
mem_malloc_amount 0
mem_calloc_count 0
mem_calloc_amount 0
mem_realloc_count 0
mem_realloc_amount 0
mem_free_count 0
mem_free_amount 0
mem_estrndup_count 0
mem_strndup_count 0
mem_estrdup_count 0
mem_strdup_count 0
mem_edupl_count 0
mem_dupl_count 0
proto_text_fetched_null 0
proto_text_fetched_bit 0
proto_text_fetched_tinyint 574690
proto_text_fetched_short 0
proto_text_fetched_int24 0
proto_text_fetched_int 1580093
proto_text_fetched_bigint 52
proto_text_fetched_decimal 3714
proto_text_fetched_float 0
proto_text_fetched_double 10332
proto_text_fetched_date 12
proto_text_fetched_year 0
proto_text_fetched_time 0
proto_text_fetched_datetime 12158
proto_text_fetched_timestamp 0
proto_text_fetched_string 1425385
proto_text_fetched_blob 0
proto_text_fetched_enum 207357
proto_text_fetched_set 0
proto_text_fetched_geometry 0
proto_text_fetched_other 0
proto_binary_fetched_null 0
proto_binary_fetched_bit 0
proto_binary_fetched_tinyint 0
proto_binary_fetched_short 0
proto_binary_fetched_int24 0
proto_binary_fetched_int 0
proto_binary_fetched_bigint 0
proto_binary_fetched_decimal 0
proto_binary_fetched_float 0
proto_binary_fetched_double 0
proto_binary_fetched_date 0
proto_binary_fetched_year 0
proto_binary_fetched_time 0
proto_binary_fetched_datetime 0
proto_binary_fetched_timestamp 0
proto_binary_fetched_string 0
proto_binary_fetched_json 0
proto_binary_fetched_blob 0
proto_binary_fetched_enum 0
proto_binary_fetched_set 0
proto_binary_fetched_geometry 0
proto_binary_fetched_other 0
init_command_executed_count 0
init_command_failed_count 0
com_quit 10246
com_init_db 0
com_query 156866
com_field_list 0
com_create_db 0
com_drop_db 0
com_refresh 0
com_shutdown 0
com_statistics 0
com_process_info 0
com_connect 0
com_process_kill 0
com_debug 0
com_ping 0
com_time 0
com_delayed_insert 0
com_change_user 0
com_binlog_dump 0
com_table_dump 0
com_connect_out 0
com_register_slave 0
com_stmt_prepare 0
com_stmt_execute 0
com_stmt_send_long_data 0
com_stmt_close 0
com_stmt_reset 0
com_stmt_set_option 0
com_stmt_fetch 0
com_deamon 0
bytes_received_real_data_normal 105706111
bytes_received_real_data_ps 0

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 1.1.1n 15 Mar 2022
OpenSSL Header Version OpenSSL 1.1.1k 25 Mar 2021
Openssl default config /usr/lib/ssl/openssl.cnf
DirectiveLocal ValueMaster Value
openssl.cafileno valueno value
openssl.capathno valueno value

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 8.44 2020-02-12
PCRE JIT Support enabled
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jit11
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers mysql, sqlite

pdo_mysql

PDO Driver for MySQLenabled
Client API version mysqlnd 5.0.12-dev - 20150407 - $Id: 38fea24f2847fa7519001be390c98ae0acafe387 $
DirectiveLocal ValueMaster Value
pdo_mysql.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock

pdo_sqlite

PDO Driver for SQLite 3.xenabled
SQLite Library 3.34.1

Phar

Phar: PHP Archive supportenabled
Phar EXT version 2.0.2
Phar API version 1.1.1
SVN revision $Id: e117ab0dc068703c55b505e78a0d3b3752e9c0b7 $
Phar-based phar archives enabled
Tar-based phar archives enabled
ZIP-based phar archives enabled
gzip compression enabled
bzip2 compression disabled (install pecl/bz2)
Native OpenSSL support enabled
Phar based on pear/PHP_Archive, original concept by Davey Shafik.
Phar fully realized by Gregory Beaver and Marcus Boerger.
Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle.
DirectiveLocal ValueMaster Value
phar.cache_listno valueno value
phar.readonlyOnOn
phar.require_hashOnOn

posix

Revision $Id: e3a2bc739dee8e0d29094e30e1cfbe3e87e2ceb4 $

readline

Readline Supportenabled
Readline library EditLine wrapper
DirectiveLocal ValueMaster Value
cli.pagerno valueno value
cli.prompt\b \> \b \> 

redis

Redis Supportenabled
Redis Version 5.3.4
Redis Sentinel Version 0.1
Available serializers php, json, igbinary
Available compression lzf, zstd, lz4
DirectiveLocal ValueMaster Value
redis.arrays.algorithmno valueno value
redis.arrays.authno valueno value
redis.arrays.autorehash00
redis.arrays.connecttimeout00
redis.arrays.consistent00
redis.arrays.distributorno valueno value
redis.arrays.functionsno valueno value
redis.arrays.hostsno valueno value
redis.arrays.index00
redis.arrays.lazyconnect00
redis.arrays.namesno valueno value
redis.arrays.pconnect00
redis.arrays.previousno valueno value
redis.arrays.readtimeout00
redis.arrays.retryinterval00
redis.clusters.authno valueno value
redis.clusters.cache_slots00
redis.clusters.persistent00
redis.clusters.read_timeout00
redis.clusters.seedsno valueno value
redis.clusters.timeout00
redis.pconnect.connection_limit00
redis.pconnect.echo_check_liveness11
redis.pconnect.pool_patternno valueno value
redis.pconnect.pooling_enabled11
redis.session.lock_expire00
redis.session.lock_retries1010
redis.session.lock_wait_time20002000
redis.session.locking_enabled00

Reflection

Reflectionenabled
Version $Id: 279be19a9e466fb7cfea9841a630521f99644504 $

session

Session Support enabled
Registered save handlers files user memcache redis rediscluster
Registered serializer handlers php_serialize php php_binary igbinary wddx
DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire180180
session.cache_limiternocachenocache
session.cookie_domainno valueno value
session.cookie_httponlyOnOff
session.cookie_lifetime25920000
session.cookie_path//
session.cookie_secureOffOff
session.gc_divisor1000010000
session.gc_maxlifetime25920001440
session.gc_probability11
session.lazy_writeOnOn
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_path/var/www/promaturak.cz/test/temp/sessions/var/lib/php/sessions
session.serialize_handlerphpphp
session.sid_bits_per_character55
session.sid_length2626
session.upload_progress.cleanupOnOn
session.upload_progress.enabledOnOn
session.upload_progress.freq1%1%
session.upload_progress.min_freq11
session.upload_progress.namePHP_SESSION_UPLOAD_PROGRESSPHP_SESSION_UPLOAD_PROGRESS
session.upload_progress.prefixupload_progress_upload_progress_
session.use_cookiesOnOn
session.use_only_cookiesOnOn
session.use_strict_modeOffOff
session.use_trans_sid00

shmop

shmop support enabled

SimpleXML

Simplexml supportenabled
Revision $Id: ae067cdcddf424d6e762603905b98798bc924a00 $
Schema support enabled

soap

Soap Client enabled
Soap Server enabled
DirectiveLocal ValueMaster Value
soap.wsdl_cache11
soap.wsdl_cache_dir/tmp/tmp
soap.wsdl_cache_enabled11
soap.wsdl_cache_limit55
soap.wsdl_cache_ttl8640086400

sockets

Sockets Support enabled

SPL

SPL supportenabled
Interfaces Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException

sqlite3

SQLite3 supportenabled
SQLite3 module version 7.1.33-44+0~20211119.61+debian11~1.gbp448fbe
SQLite Library 3.34.1
DirectiveLocal ValueMaster Value
sqlite3.defensive11
sqlite3.extension_dirno valueno value

standard

Dynamic Library Support enabled
Path to sendmail /usr/sbin/sendmail -t -i
DirectiveLocal ValueMaster Value
assert.active11
assert.bail00
assert.callbackno valueno value
assert.exception00
assert.quiet_eval00
assert.warning11
auto_detect_line_endings00
default_socket_timeout6060
fromno valueno value
session.trans_sid_hostsno valueno value
session.trans_sid_tagsa=href,area=href,frame=src,form=a=href,area=href,frame=src,form=
url_rewriter.hostsno valueno value
url_rewriter.tagsform=form=
user_agentno valueno value

sysvmsg

sysvmsg support enabled
Revision $Id: 483c70b5c54718693a4b95633a097e33d1120ba9 $

sysvsem

Version 7.1.33-44+0~20211119.61+debian11~1.gbp448fbe

sysvshm

Version 7.1.33-44+0~20211119.61+debian11~1.gbp448fbe

tokenizer

Tokenizer Support enabled

wddx

WDDX Supportenabled
WDDX Session Serializer enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.9.12

xmlreader

XMLReader enabled

xmlwriter

XMLWriter enabled

xsl

XSL enabled
libxslt Version 1.1.34
libxslt compiled against libxml Version 2.9.10
EXSLT enabled
libexslt Version 1.1.34

Zend OPcache

Opcode Caching Up and Running
Optimization Enabled
SHM Cache Enabled
File Cache Disabled
Startup OK
Shared memory model mmap
Cache hits 19064197992
Cache misses 7840
Used memory 80160344
Free memory 18959752
Wasted memory 35097632
Interned Strings Used memory 4991464
Interned Strings Free memory 3397144
Cached scripts 3596
Cached keys 5210
Max keys 16229
OOM restarts 0
Hash keys restarts 0
Manual restarts 0
DirectiveLocal ValueMaster Value
opcache.blacklist_filenameno valueno value
opcache.consistency_checks00
opcache.dups_fixOffOff
opcache.enableOnOn
opcache.enable_cliOffOff
opcache.enable_file_overrideOffOff
opcache.error_logno valueno value
opcache.fast_shutdown00
opcache.file_cacheno valueno value
opcache.file_cache_consistency_checks11
opcache.file_cache_only00
opcache.file_update_protection22
opcache.force_restart_timeout180180
opcache.huge_code_pagesOffOff
opcache.inherited_hackOnOn
opcache.interned_strings_buffer88
opcache.lockfile_path/tmp/tmp
opcache.log_verbosity_level11
opcache.max_accelerated_files1000010000
opcache.max_file_size00
opcache.max_wasted_percentage55
opcache.memory_consumption128128
opcache.opt_debug_level00
opcache.optimization_level0x7FFFBFFF0x7FFFBFFF
opcache.preferred_memory_modelno valueno value
opcache.protect_memory00
opcache.restrict_apino valueno value
opcache.revalidate_freq22
opcache.revalidate_pathOffOff
opcache.save_comments11
opcache.use_cwdOnOn
opcache.validate_permissionOffOff
opcache.validate_rootOffOff
opcache.validate_timestampsOnOn

zip

Zip enabled
Zip version 1.13.5
Libzip version 1.7.3

zlib

ZLib Supportenabled
Stream Wrapper compress.zlib://
Stream Filter zlib.inflate, zlib.deflate
Compiled Version 1.2.11
Linked Version 1.2.11
DirectiveLocal ValueMaster Value
zlib.output_compressionOffOff
zlib.output_compression_level-1-1
zlib.output_handlerno valueno value

Additional Modules

Module Name

HTTP request

Headers

Cookie_ga=GA1.1.1644340050.1708339346; _fbp=fb.1.1708339346357.1324184141; nette-browser=sirtdt69ci; PHPSESSID=f6nir28kc9c08e0piotc0e2jev; NMGTM.firstReferrer=https://test.promaturak.cz/cs/produkty/zarive-ruzove-satenove-serpy-547; NMGTM.paidVisit=; NMGTM.firstUTMSource=; NMGTM.firstUTMMedium=; services-overlayer=true; _ga_2BS59PS5Q6=GS1.1.1713172075.47.1.1713172747.0.0.0
Accept-Languagecs-CZ,cs;q=0.9,en;q=0.8
Accept-Encodinggzip, deflate, br, zstd
Refererhttps://test.promaturak.cz/cs/produkty/champagne-480
Sec-Fetch-Destempty
Sec-Fetch-Modecors
Sec-Fetch-Sitesame-origin
Originhttps://test.promaturak.cz
Sec-Ch-Ua-Platform"Windows"
User-AgentMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36
Sec-Ch-Ua-Mobile?0
X-Requested-WithXMLHttpRequest
Content-Typemultipart/form-data; boundary=----WebKitFormBoundary9GknrjEYyFMajBtS
Accept*/*
Sec-Ch-Ua"Google Chrome";v="123", "Not:A-Brand";v="8", "Chromium";v="123"
Content-Length1821
Connectionkeep-alive
Hosttest.promaturak.cz

$_GET

empty

$_POST

bf_amount
"21" (2)
bf_properties
array (12)
7876 => "11" (2) 7877 => "10" (2) 7867 => "16" (2) 7875 => "775" (3) 7869 => array (1)
| 0 => "20" (2)
7868 => array (1)
| 0 => "19" (2)
7874 => "47" (2) 7870 => "25" (2) 7878 => "512" (3) 7872 => "Absolvent 2024" (14) 7873 => "ZŠ TGM Krumlov" (15) 7871 => ""
bf_special_id
""
do
"productDetail-buyForm-buyForm-submit" (36)
bf_save_and_add_special
"BUY_AND_ADD_RELATED" (19)

$_COOKIE

_ga
"GA1.1.1644340050.1708339346" (27)
_fbp
"fb.1.1708339346357.1324184141" (29)
nette-browser
"sirtdt69ci" (10)
PHPSESSID
"f6nir28kc9c08e0piotc0e2jev" (26)
NMGTM_firstReferrer
"https://test.promaturak.cz/cs/produkty/zarive-ruzove-satenove-serpy-547" (71)
NMGTM_paidVisit
""
NMGTM_firstUTMSource
""
NMGTM_firstUTMMedium
""
services-overlayer
"true" (4)
_ga_2BS59PS5Q6
"GS1.1.1713172075.47.1.1713172747.0.0.0" (38)

HTTP response

Headers

X-Frame-Options: SAMEORIGIN
Content-Type: text/html; charset=utf-8
X-Powered-By: InnPress & Nette Framework
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Set-Cookie: PHPSESSID=f6nir28kc9c08e0piotc0e2jev; expires=Wed, 15-May-2024 09:20:01 GMT; Max-Age=2592000; path=/; HttpOnly
Set-Cookie: nette-browser=sirtdt69ci; path=/; HttpOnly
Vary: X-Requested-With