friendica-addons/extcron/extcron.php

30 lines
559 B
PHP
Raw Normal View History

2012-01-12 05:56:22 +01:00
<?php
/**
* Name: external cron
* Description: Use external server or service to run poller regularly
* Version: 1.0
2013-01-06 06:50:11 +01:00
* Author: Mike Macgirvin <https://macgirvin.com/profile/mike>
2012-01-12 05:56:22 +01:00
*
* Notes: External service needs to make a web request to http(s)://yoursite/extcron
* Status: Unsupported
2012-01-12 05:56:22 +01:00
*/
require_once "mod/worker.php";
2012-01-12 05:56:22 +01:00
function extcron_install() {}
2012-01-12 06:03:14 +01:00
function extcron_uninstall() {}
2012-01-12 05:56:22 +01:00
function extcron_module() {}
function extcron_init(&$a) {
worker_init($a);
2012-01-12 06:03:14 +01:00
killme();
// Deactivated
//proc_run('php','include/poller.php');
//killme();
2012-01-12 05:56:22 +01:00
}