ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSoapBackgroundTasksAdministration.php
Go to the documentation of this file.
1 <?php
2 
20 require_once __DIR__ . "/../../../../vendor/composer/vendor/autoload.php";
21 
23 
25 {
26  public function __construct(bool $use_nusoap = true)
27  {
28  parent::__construct($use_nusoap);
29  }
30 
34  public function runAsync(string $sid)
35  {
36  ignore_user_abort(true);
37 
38  $this->initAuth($sid);
39  $this->initIlias();
40 
41  if (!$this->checkSession($sid)) {
42  return $this->raiseError($this->getMessage(), $this->getMessageCode());
43  }
44  global $DIC;
45  $tm = new AsyncTaskManager(
46  $DIC->backgroundTasks()->persistence()
47  );
48  $tm->runAsync();
49  return true;
50  }
51 }
raiseError(string $a_message, $a_code)
global $DIC
Definition: shib_login.php:22
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...