19 declare(strict_types=1);
36 $tc = $DIC->ui()->factory()->toast()->container();
39 $DIC->ui()->factory()->toast()->standard(
41 $DIC->ui()->factory()->symbol()->icon()->standard(
'info',
'Test')
45 $toasts = base64_encode($DIC->ui()->renderer()->renderAsync($toasts));
46 $button = $DIC->ui()->factory()->button()->standard($DIC->language()->txt(
'show'),
'');
47 $button = $button->withAdditionalOnLoadCode(
function (
$id) use ($toasts) {
48 return "$id.addEventListener('click', () => { 49 $id.parentNode.querySelector('.il-toast-container').innerHTML = atob('$toasts'); 50 $id.parentNode.querySelector('.il-toast-container').querySelectorAll('script').forEach(element => { 51 let newScript = document.createElement('script'); 52 newScript.innerHTML = element.innerHTML; 53 element.parentNode.appendChild(newScript); 58 return $DIC->ui()->renderer()->render([$button,$tc]);
with_action()
description: > Example for rendering a standard toast with actions.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins