Function Standard_crud_module->do_next_manager

Definitions

sources/crud_module.php

  • The do-next manager for after content management.
  • 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 title (output of get_screen_title) (null: don't do full page)
$description Tempcode No No required parameter N/A N/A Some description to show, saying what happened
$id ?ID_TEXT No No Null N/A N/A The ID of whatever we are working with (null: deleted)

Returns

  • The UI
  • Type: Tempcode
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * The do-next manager for after content management.
 *
 * @param  ?Tempcode $title The title (output of get_screen_title) (null: don't do full page)
 * @param  Tempcode $description Some description to show, saying what happened
 * @param  ?ID_TEXT $id The ID of whatever we are working with (null: deleted)
 * @return Tempcode The UI
 */

public function do_next_manager(?object $title, object $description, ?string $id = null) : object