2017 © Pedro Peláez
 

contao-module contao-request

A request class, that brings the symfony/http-foundation to contao.

image

heimrichhannot/contao-request

A request class, that brings the symfony/http-foundation to contao.

  • Thursday, March 8, 2018
  • by digitales@heimrich-hannot.de
  • Repository
  • 5 Watchers
  • 0 Stars
  • 5,421 Installations
  • PHP
  • 9 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 14 Versions
  • 24 % Grown

The README.md

Request

, (*1)

Contao uses it own Input class, that check the request for $_GET, $_POST and more parameters. This is done directly on $_GET, $_POST Server Parameters and for Tests it is not possible to simulate the HTTP-Server. Here HeimrichHannot\Request put on and provide the sumilation of your own HTTP-Server object with help of symfony/http-foundation., (*2)

Technical instruction

Use the following alternatives for contao Input or Environment calls, (*3)

Contao Request
\Input::get($strKey) \HeimrichHannot\Request\Request::getGet($strKey)
\Input::post($strKey) \HeimrichHannot\Request\Request::getPost($strKey)
\Input::postHtml($strKey) \HeimrichHannot\Request\Request::getPostHtml($strKey)
\Input::postRaw($strKey) \HeimrichHannot\Request\Request::getPostRaw($strKey)
\Input::setPost($strKey, $varValue) \HeimrichHannot\Request\Request::setPost($strKey, $varValue)
\Input::setGet($strKey, $varValue) \HeimrichHannot\Request\Request::setGet($strKey, $varValue)
isset($_GET[$strKey]) \HeimrichHannot\Request\Request::hasGet($strKey)
isset($_POST[$strKey]) \HeimrichHannot\Request\Request::hasPost($strKey)
\Environment::get('isAjaxRequest') \HeimrichHannot\Request\Request::getInstance()->isXmlHttpRequest()

Insert tags

For convenience we provide insert tags for some request method parameters., (*4)

**CAUTION: If you use the insert tags in SQL-Query Context, be sure that you escape the insert tag values by using e.g. prepare('field=?'')->execute('{{request_get::auto_item}}'') **, (*5)

Insert tag Description
{{request_get::*}} This tag will be replaced with the XSS protected value of the query parameter (replace * with the name of the query parameter, e.g. auto_item)
{{request_post::*}} This tag will be replaced with the XSS protected value of the post parameter (replace * with the name of the post parameter, e.g. FORM_SUBMIT)

The Versions

08/03 2018
09/05 2017

1.1.3

1.1.3.0 https://github.com/heimrichhannot/contao-request

A request class, that brings the symfony/http-foundation to contao.

  Sources   Download

LGPL-3.0+

The Requires

 

The Development Requires

symfony request contao

12/04 2017

1.1.2

1.1.2.0 https://github.com/heimrichhannot/contao-request

A request class, that brings the symfony/http-foundation to contao.

  Sources   Download

LGPL-3.0+

The Requires

 

The Development Requires

symfony request contao

11/04 2017

1.1.1

1.1.1.0 https://github.com/heimrichhannot/contao-request

A request class, that brings the symfony/http-foundation to contao.

  Sources   Download

LGPL-3.0+

The Requires

 

The Development Requires

symfony request contao

04/04 2017

1.1.0

1.1.0.0 https://github.com/heimrichhannot/contao-request

A request class, that brings the symfony/http-foundation to contao.

  Sources   Download

LGPL-3.0+

The Requires

 

The Development Requires

symfony request contao

21/12 2016

1.0.2

1.0.2.0 https://github.com/heimrichhannot/contao-request

A request class, that brings the symfony/http-foundation to contao.

  Sources   Download

LGPL-3.0+

The Requires

 

symfony request contao

26/10 2016

1.0.1

1.0.1.0 https://github.com/heimrichhannot/contao-request

A request class, that brings the symfony/http-foundation to contao.

  Sources   Download

LGPL-3.0+

The Requires

 

symfony request contao

04/08 2016

1.0.0

1.0.0.0 https://github.com/heimrichhannot/contao-request

A request class, that brings the symfony/http-foundation to contao.

  Sources   Download

LGPL-3.0+

The Requires

 

symfony request contao