2019-12-20 21:37:21 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/UpdateServerDirectory.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
use Friendica\Core\Logger;
|
2019-12-21 07:39:22 +01:00
|
|
|
use Friendica\Model\GServer;
|
2019-12-20 21:37:21 +01:00
|
|
|
|
2019-12-20 22:27:49 +01:00
|
|
|
class UpdateServerDirectory
|
2019-12-20 21:37:21 +01:00
|
|
|
{
|
2019-12-21 21:18:44 +01:00
|
|
|
/**
|
|
|
|
* Query the given server for their users
|
|
|
|
* @param string $gserver Server URL
|
|
|
|
*/
|
2019-12-21 07:39:22 +01:00
|
|
|
public static function execute($gserver)
|
2019-12-20 21:37:21 +01:00
|
|
|
{
|
2019-12-21 07:39:22 +01:00
|
|
|
GServer::updateDirectory($gserver);
|
2019-12-20 21:37:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|