Class CSRF

Summary

Fully Qualified Name: CodeIgniter\Filters\CSRF
Implements: FilterInterface

Description

CSRF filter.

This filter is not intended to be used from the command line.

Methods

Name Description Defined By
after() We don't have anything to do here. CSRF
before() Do whatever processing this filter needs to do. CSRF

Method Details

after()

We don't have anything to do here.

Parameter Name Type Description
$request \RequestInterface|\CodeIgniter\HTTP\IncomingRequest
$response \ResponseInterface|\CodeIgniter\HTTP\Response

Returns: mixed

before()

Do whatever processing this filter needs to do.

By default it should not return anything during normal execution. However, when an abnormal state is found, it should return an instance of CodeIgniter\HTTP\Response. If it does, script execution will end and that Response will be sent back to the client, allowing for error pages, redirects, etc.

Parameter Name Type Description
$request \RequestInterface|\CodeIgniter\HTTP\IncomingRequest

Returns: mixed

Top