TwistPHP Documentation

_ignoreUserAbort

File path: dist/twist/Core/Controllers/Base.controller.php
Namespace: Twist\Core\Controllers
Extends:

_ignoreUserAbortIgnore user abort, when in use the scrip will carry on processing until complete even if the user closes the browser window or stops the request from loading.

Parameters

Name Type Description
[$blIgnore = true]booleann/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$blIgnore true;

//Call the function _ignoreUserAbort with the example vars
$resBase = new \Twist\Core\Controllers\Base();
$resBase -> _ignoreUserAbort($blIgnore);