Function Standard_crud_module->handle_confirmations
Definitions
sources/crud_module.php
- If a confirmation (or some kind of interstitial screen) is needed, and not been given, ask for one.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: object
Parameters
Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
---|---|---|---|---|---|---|---|
$title | Tempcode | No | No | required parameter | N/A | N/A | The page title for what's being done |
Returns
- The confirmation UI (null: all is clear - no confirmation needed)
- Type: ?Tempcode
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* If a confirmation (or some kind of interstitial screen) is needed, and not been given, ask for one.
*
* @param Tempcode $title The page title for what's being done
* @return ?Tempcode The confirmation UI (null: all is clear - no confirmation needed)
*/
public function handle_confirmations(object $title) : ?object
* If a confirmation (or some kind of interstitial screen) is needed, and not been given, ask for one.
*
* @param Tempcode $title The page title for what's being done
* @return ?Tempcode The confirmation UI (null: all is clear - no confirmation needed)
*/
public function handle_confirmations(object $title) : ?object