29 if (!empty($component->getAction())) {
30 $tpl->touchBlock(
"action_begin");
32 if (is_string($component->getAction())) {
33 $tpl->setCurrentBlock(
"with_href");
34 $tpl->setVariable(
"HREF", $component->getAction());
35 $tpl->parseCurrentBlock();
38 if (is_array($component->getAction())) {
39 $tpl->setCurrentBlock(
"with_href");
40 $tpl->setVariable(
"HREF",
"#");
41 $tpl->parseCurrentBlock();
42 $tpl->setCurrentBlock(
"with_id");
43 $tpl->setVariable(
"ID", $id);
44 $tpl->parseCurrentBlock();
48 if (!is_array($component->getAction()) && $id !== null) {
49 $tpl->setVariable(
"IMG_ID",
" id='" . $id .
"' ");
52 $tpl->setCurrentBlock($component->getType());
53 $tpl->setVariable(
"SOURCE", $component->getSource());
54 $tpl->setVariable(
"ALT", htmlspecialchars($component->getAlt()));
55 $tpl->parseCurrentBlock();
57 if (!empty($component->getAction())) {
58 $tpl->touchBlock(
"action_end");
69 return [Component\Image\Image::class];
getComponentInterfaceName()
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
checkComponent(Component $component)
Check if a given component fits this renderer and throw if that is not the case. ...
render(Component $component, Renderer $default_renderer)
Render the component if possible and delegate additional rendering to the default_renderer.
getTemplate($name, $purge_unfilled_vars, $purge_unused_blocks)
Get template of component this renderer is made for.
Base class for all component renderers.
bindJavaScript(JavaScriptBindable $component)
Bind the component to JavaScript.