I will never understand git ...

This commit is contained in:
Michael 2017-11-12 07:26:04 +00:00
parent 1aa8f56662
commit 521e213e7a
1 changed files with 42 additions and 39 deletions

View File

@ -1,17 +1,19 @@
<?php
namespace Friendica\Worker;
use Friendica\Core\Config;
use Friendica\Core\Worker;
function cronhooks_run(&$argv, &$argc) {
Class CronHooks {
static public function execute($hook = '') {
global $a;
require_once 'include/datetime.php';
if (($argc == 2) && is_array($a->hooks) && array_key_exists("cron", $a->hooks)) {
foreach ($a->hooks["cron"] as $hook) {
if ($hook[1] == $argv[1]) {
logger("Calling cron hook '" . $hook[1] . "'", LOGGER_DEBUG);
if (($hook != '') && is_array($a->hooks) && array_key_exists("cron", $a->hooks)) {
foreach ($a->hooks["cron"] as $single_hook) {
if ($single_hook[1] == $hook) {
logger("Calling cron hook '" . $hook . "'", LOGGER_DEBUG);
call_single_hook($a, $name, $hook, $data);
}
}
@ -42,7 +44,7 @@ function cronhooks_run(&$argv, &$argc) {
if (is_array($a->hooks) && array_key_exists("cron", $a->hooks)) {
foreach ($a->hooks["cron"] as $hook) {
logger("Calling cronhooks for '" . $hook[1] . "'", LOGGER_DEBUG);
Worker::add(PRIORITY_MEDIUM, "cronhooks", $hook[1]);
Worker::add(PRIORITY_MEDIUM, "CronHooks", $hook[1]);
}
}
@ -52,3 +54,4 @@ function cronhooks_run(&$argv, &$argc) {
return;
}
}