Function __global->cron_installed

Definitions

sources/global3.php

  • Find if the system scheduler is installed.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: bool

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$absolutely_sure boolean No No False N/A N/A Whether the system scheduler really needs to be installed (if set to false it will be assumed installed on dev-mode)

Returns

  • Whether The system scheduler is installed
  • Type: boolean
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Find if the system scheduler is installed.
 *
 * @param  boolean $absolutely_sure Whether the system scheduler really needs to be installed (if set to false it will be assumed installed on dev-mode)
 * @return boolean Whether The system scheduler is installed
 */

function cron_installed(bool $absolutely_sure = false) : bool