ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HttpServiceAware.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\FileDelivery;
22 
38 trait HttpServiceAware
39 {
43  private static $http;
44 
45 
55  protected static function http()
56  {
57  if (self::$http === null) {
58  self::$http = $GLOBALS['DIC']['http'];
59  }
60 
61  return self::$http;
62  }
63 }
$http
Definition: deliver.php:30
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
$GLOBALS["DIC"]
Definition: wac.php:53