3 declare(strict_types=1);
23 require_once(
"libs/composer/vendor/autoload.php");
43 return [
"\\ILIAS\\UI\\Component\\Symbol\\Glyph\\Glyph"];
49 public array $ids = array();
79 return [
"\\ILIAS\\UI\\Component\\Counter\\Counter"];
102 require_once(__DIR__ .
"/../Base.php");
136 public function get(
string $block = null):
string 148 public array $files = array();
152 $file_name = realpath(__DIR__ .
"/../../../" . $path);
153 $this->files[$file_name] = array($purge_unfilled_vars, $purge_unused_blocks);
155 if (!file_exists($file_name)) {
198 $this->image_path_resolver = $this->getMockBuilder(
ILIAS\
UI\
Implementation\Render\ImagePathResolver::class)
210 $this->image_path_resolver,
213 $r->_getTemplate(
"tpl.glyph.html",
true,
false);
215 $expected = array(realpath(__DIR__ .
"/../../../src/UI/templates/default/Symbol/tpl.glyph.html")
216 => array(
true,
false)
219 $this->assertEquals($expected, $this->tpl_factory->files);
230 $this->image_path_resolver,
234 $this->expectException(TypeError::class);
235 $r->_getTemplate(
"tpl.counter_foo.html",
true,
false);
237 $expected = array(realpath(__DIR__ .
"/../../src/UI/templates/default/Counter/tpl.counter_foo.html")
238 => array(
true,
false)
240 $this->assertEquals($expected, $this->tpl_factory->files);
251 $this->image_path_resolver,
255 $g =
new Glyph(C\Symbol\
Glyph\Glyph::SETTINGS,
"aria_label");
258 $g = $g->withOnLoadCode(
function (
$id) use (&$ids) {
264 $this->assertEquals($this->js_binding->ids, $ids);
265 $this->assertEquals(array(
"id_1"), $ids);
266 $this->assertEquals(array(
"ID: id_1"), $this->js_binding->on_load_code);
277 $this->image_path_resolver,
281 $g =
new Glyph(C\Symbol\
Glyph\Glyph::SETTINGS,
"aria_label");
283 $g = $g->withOnLoadCode(
function (
$id) {
289 $this->assertFalse(
"This should not happen...");
291 $this->assertTrue(
true);
An entity that renders components to a string output.
getComponentInterfaceName()
LoggingJavaScriptBinding $js_binding
TemplateFactoryMock $tpl_factory
renderAsync($component, ?Renderer $root=null)
Same as render, except that this version also returns any javascript code bound to the on load event...
touchBlock(string $name)
Touch a block without working further on it.
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
render($component, ?Renderer $root=null)
Render given component.
render(Component $component, Renderer $default_renderer)
test_bindJavaScript_no_string()
render(Component $component, Renderer $default_renderer)
setVariable(string $name, $value)
Set a variable in the current block.
_getTemplate(string $a, bool $b, bool $c)
render(Component $component, Renderer $default_renderer)
Provides common functionality for UI tests.
addOnLoadCode(string $code)
Add some javascript to be executed on_load of the rendered page.
withAdditionalContext(C\Component $context)
getTemplate(string $name, bool $purge_unfilled_vars, bool $purge_unused_blocks)
Get template of component this renderer is made for.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTemplate(string $path, bool $purge_unfilled_vars, bool $purge_unused_blocks)
Get template instance.
test_getTemplate_unsuccessfull()
test_getTemplate_successfull()
setCurrentBlock(string $name)
Set the block to work on.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getUIFactory()
Get a UI factory.
_getTemplate(string $a, bool $b, bool $c)
getComponentInterfaceName()
parseCurrentBlock()
Parse the block that is currently worked on.
Interface for a factory that provides templates.
test_bindJavaScript_successfull()
Base class for all component renderers.
bindJavaScript(JavaScriptBindable $component)
Bind the component to JavaScript.