ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.PlayerGUIRequest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
26 {
27  use BaseGUIRequest;
28 
29  public function __construct(
32  ) {
33  $this->initRequest(
34  $http,
35  $refinery
36  );
37  }
38 
39  public function getTrackingRefId(): int
40  {
41  return $this->int("mob_tracking_ref_id");
42  }
43 
44  public function getTrackingMobId(): int
45  {
46  return $this->int("mob_tracking_mob_id");
47  }
48 }
Interface Observer Contains several chained tasks and infos about them.
__construct(\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery)
$http
Definition: deliver.php:30
trait BaseGUIRequest
Base gui request wrapper.
initRequest(HTTP\Services $http, Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Query params and post data parameters are used for testing.