Elgg /
Elgg
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * Elgg cron library. |
||
| 4 | * |
||
| 5 | * @package Elgg.Core |
||
| 6 | * @subpackage Cron |
||
| 7 | */ |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Cron initialization |
||
| 11 | * |
||
| 12 | * @return void |
||
| 13 | * @access private |
||
| 14 | */ |
||
| 15 | function _elgg_cron_init() { |
||
| 16 | 33 | elgg_register_page_handler('cron', '_elgg_cron_page_handler'); |
|
| 17 | |||
| 18 | 33 | elgg_set_config('elgg_cron_periods', array_keys(\Elgg\Cron::$intervals)); |
|
| 19 | |||
| 20 | 33 | elgg_register_menu_item('page', [ |
|
| 21 | 33 | 'name' => 'cron', |
|
| 22 | 33 | 'text' => elgg_echo('admin:cron'), |
|
| 23 | 33 | 'href' => 'admin/cron', |
|
| 24 | 33 | 'section' => 'information', |
|
| 25 | 33 | 'context' => 'admin', |
|
| 26 | ]); |
||
| 27 | 33 | } |
|
| 28 | |||
| 29 | /** |
||
| 30 | * /cron handler |
||
| 31 | * |
||
| 32 | * @param array $segments URL segments |
||
| 33 | * |
||
| 34 | * @return bool |
||
| 35 | * @access private |
||
| 36 | */ |
||
| 37 | function _elgg_cron_page_handler($segments) { |
||
| 38 | |||
| 39 | 2 | if (_elgg_config()->security_protect_cron) { |
|
| 40 | elgg_signed_request_gatekeeper(); |
||
| 41 | } |
||
| 42 | |||
| 43 | 2 | $interval = strtolower(array_shift($segments)); |
|
| 44 | |||
| 45 | 2 | $intervals = null; |
|
| 46 | 2 | if ($interval !== 'run') { |
|
| 47 | 1 | $intervals = [$interval]; |
|
| 48 | } |
||
| 49 | |||
| 50 | 2 | $output = ''; |
|
| 51 | try { |
||
| 52 | 2 | $jobs = _elgg_services()->cron->run($intervals); |
|
| 53 | 2 | foreach ($jobs as $job) { |
|
| 54 | 2 | $output .= $job->getOutput() . PHP_EOL; |
|
| 55 | } |
||
| 56 | } catch (CronException $ex) { |
||
| 57 | $output .= "Exception: {$ex->getMessage()}"; |
||
| 58 | } |
||
| 59 | |||
| 60 | 2 | echo $output; |
|
| 61 | 2 | return true; |
|
| 62 | } |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @see \Elgg\Application::loadCore Do not do work here. Just register for events. |
||
| 66 | */ |
||
| 67 | return function (\Elgg\EventsService $events, \Elgg\HooksRegistrationService $hooks) { |
||
|
1 ignored issue
–
show
|
|||
| 68 | 18 | $events->registerHandler('init', 'system', '_elgg_cron_init'); |
|
| 69 | }; |
||
| 70 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.