ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
MakeSlateAsync.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
21 
24 
29 trait MakeSlateAsync
30 {
31  use Hasher;
32 
38  protected function addAsyncLoadingCode(Slate $slate, supportsAsynchronousLoading $item): Slate
39  {
40  if ($item->supportsAsynchronousLoading() === false) {
41  return $slate;
42  }
43 
44  $serialize = $item->getProviderIdentification()->serialize();
45  $replace_signal = $slate->getReplaceSignal()->withAsyncRenderUrl("./gs_content.php?item={$this->hash($serialize)}");
46 
47  $slate = $slate->appendOnInView($replace_signal);
48 
49  return $slate;
50  }
51 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getReplaceSignal()
Signal to replace the contents of the slate.
addAsyncLoadingCode(Slate $slate, supportsAsynchronousLoading $item)
Interface supportsAsynchronousLoading Types, which implement this interface, can load their content a...
appendOnInView(Signal $signal)
A Signal that is triggered when the slate "comes into view", i.e.