/srv/www/bgphoenics2.invorbereitung.de/ilias/Core/TwigComponents/Classes/Components/Favourites.php
<?php
namespace SeminarCatalog\Core\TwigComponents\Components;
use SeminarCatalog\Core\Object\Manager\ObjectManager;
use SeminarCatalog\Core\Seminar\Model\Seminar;
use SeminarCatalog\Core\TwigComponents\Base\TwigComponent;
use SeminarCatalog\Core\User\Model\CurrentUser;
class Favourites extends TwigComponent
{
protected Seminar $seminar;
public function getContext(): array
{
$favouriteList = ObjectManager::get(CurrentUser::class)->getFavouritesIdList();
return [
'id' => uniqid(),
'seminar' => $this->seminar,
'favouriteList' => $favouriteList,
];
}
}
Arguments
"Class "SeminarCatalog\Core\TwigComponents\Base\TwigComponent" not found"
/srv/www/bgphoenics2.invorbereitung.de/ilias/vendor/composer/ClassLoader.php
/**
* @return void
*/
private static function initializeIncludeClosure()
{
if (self::$includeFile !== null) {
return;
}
/**
* Scope isolated include.
*
* Prevents access to $this/self from included files.
*
* @param string $file
* @return void
*/
self::$includeFile = \Closure::bind(static function($file) {
include $file;
}, null, null);
}
}
/srv/www/bgphoenics2.invorbereitung.de/ilias/vendor/composer/ClassLoader.php
public function unregister()
{
spl_autoload_unregister(array($this, 'loadClass'));
if (null !== $this->vendorDir) {
unset(self::$registeredLoaders[$this->vendorDir]);
}
}
/**
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return true|null True if loaded, null otherwise
*/
public function loadClass($class)
{
if ($file = $this->findFile($class)) {
$includeFile = self::$includeFile;
$includeFile($file);
return true;
}
return null;
}
/**
* Finds the path to the file where the class is defined.
*
* @param string $class The name of the class
*
* @return string|false The path if found, false otherwise
*/
public function findFile($class)
{
// class map lookup
if (isset($this->classMap[$class])) {
return $this->classMap[$class];
}
Arguments
"/srv/www/bgphoenics2.invorbereitung.de/ilias/vendor/composer/../../Core/TwigComponents/Classes/Components/Favourites.php"
[internal]
Arguments
"SeminarCatalog\Core\TwigComponents\Components\Favourites"
/srv/www/bgphoenics2.invorbereitung.de/ilias/Core/Object/Classes/Manager/ObjectManager.php
*/
class ObjectManager implements ObjectManagerInterface
{
/**
* @var array<class-string,Callable> $factories
*/
protected static array $factories = [];
/**
* @var array<class-string,ObjectFactoryInterface> $factories
*/
protected static array $factoriesInstance = [];
protected static bool $testMode = false;
public static function has(string $className) : bool {
$className = self::mapClass($className);
return class_exists($className) || interface_exists($className);
}
/**
* @template Type
* @param class-string<Type> $className
* @param list<mixed> $constructorArguments
* @return Type
*/
public static function get(string $className, array $constructorArguments = []) {
$className = self::mapClass($className);
$instance = self::getInstanceVariable($className, $constructorArguments);
if (method_exists($instance, '__inject')) {
self::injectDependencies($instance);
}
return $instance;
}
Arguments
"SeminarCatalog\Core\TwigComponents\Components\Favourites"
/srv/www/bgphoenics2.invorbereitung.de/ilias/classes/Service/Wrapper/TwigTemplate.php
public function renderBlock($name, array $context, array $blocks = [], $useBlocks = true): string
{
$template = $this->base->renderBlock($name, $context, $blocks, $useBlocks);
return $this->parseSemiTags($template);
}
private function parseSemiTags(string $template): string
{
// modifier 's' makes, that the dot also matches newlines
if (preg_match_all('/<xsem:(\S+)[^>]*>(.*?)<\/xsem:\1>/s', $template, $matches)) {
for ($i = 0; $i < count($matches[0]); $i++) {
$componentName = $matches[1][$i];
$content = $matches[2][$i] ?? "";
$completeTag = $matches[0][$i];
$componentName = str_replace(':', '\\', $componentName);
$class = '\SeminarCatalog\Core\TwigComponents\Components\\' . $componentName;
if (!ObjectManager::has($class)) {
continue;
}
$component = ObjectManager::get($class, [ $this->twig->getGlobals()['controller'] ]);
if (!$component instanceof TwigComponent) {
continue;
}
$arguments = $this->parseArguments($completeTag);
$frontendArguments = [];
foreach ($arguments as $argument) {
$key = $argument['key'];
$value = $argument['value'];
if (is_string($value) && str_starts_with($value, '_context_pass_')) {
$contextKey = substr($value, 14);
$value = $this->twig->getPassContext()[$contextKey];
}
$property = UtilityService::kebabToCamelCase($key);
if (property_exists($component, $property)) {
$setter = 'set' . ucfirst($property);
Arguments
"SeminarCatalog\Core\TwigComponents\Components\Favourites"
/srv/www/bgphoenics2.invorbereitung.de/ilias/classes/Service/Wrapper/TwigTemplate.php
public function getDebugInfo(): array
{
return $this->base->getDebugInfo();
}
public function getSourceContext(): Source
{
return $this->base->getSourceContext();
}
protected function doDisplay(array $context, array $blocks = []): Traversable|array
{
return $this->base->doDisplay($context, $blocks);
}
public function render(array $context = []): string
{
$template = $this->base->render($context);
return $this->parseSemiTags($template);
}
public function renderBlock($name, array $context, array $blocks = [], $useBlocks = true): string
{
$template = $this->base->renderBlock($name, $context, $blocks, $useBlocks);
return $this->parseSemiTags($template);
}
private function parseSemiTags(string $template): string
{
// modifier 's' makes, that the dot also matches newlines
if (preg_match_all('/<xsem:(\S+)[^>]*>(.*?)<\/xsem:\1>/s', $template, $matches)) {
for ($i = 0; $i < count($matches[0]); $i++) {
$componentName = $matches[1][$i];
$content = $matches[2][$i] ?? "";
$completeTag = $matches[0][$i];
$componentName = str_replace(':', '\\', $componentName);
$class = '\SeminarCatalog\Core\TwigComponents\Components\\' . $componentName;
Arguments
"""
\n
\n
\n
<div class="catalog">\n
<style>\n
.tab-notice-danger {\n
color: var(--il-danger-color);\n
}\n
\n
.tab-notice-warning {\n
color: var(--warning-color);\n
}\n
div.il_HeaderInner {\n
/*Removes ilias header, since we render an semi header*/\n
display: none !important;\n
}\n
\n
#xsem.backend #xsemTopArea #xsemTopWrapper #xsemTabs .nav.nav-tabs > li#xsemMenuDropdownToggler div.xsem-menu-dropdown-menu {\n
padding: 10px;\n
}\n
\n
#xsem.backend #xsemTopArea #xsemTopWrapper #xsemTabs .nav.nav-tabs > li#xsemMenuDropdownToggler div.xsem-menu-dropdown-menu {\n
display: none;\n
}\n
#xsem.backend #xsemTopArea #xsemTopWrapper #xsemTabs .nav.nav-tabs > li#xsemMenuDropdownToggler.show div.xsem-menu-dropdown-menu,\n
#xsem.backend #xsemTopArea #xsemTopWrapper #xsemTabs .nav.nav-tabs > li#xsemMenuDropdownToggler.open div.xsem-menu-dropdown-menu {\n
display: flex;\n
}\n
\n
#xsem.backend #xsemTopArea #xsemTopWrapper #xsemTabs .nav.nav-tabs > li#xsemMenuDropdownToggler.active a {\n
background-color: #fff;\n
color: var(--main-color) !important;\n
}\n
\n
#xsem.backend #xsemTopArea #xsemTopWrapper #xsemTabs .nav.nav-tabs > li#xsemMenuDropdownToggler.active a span.caret {\n
color: var(--main-color) !important;\n
}\n
\n
#xsem.backend #xsemTopArea #xsemTopWrapper #xsemTabs .nav.nav-tabs > li#xsemMenuDropdownToggler div.xsem-menu-dropdown-menu .dropdown-item {\n
color: var(--darkblue) !important;\n
display: block;\n
}\n
\n
#xsem.backend #xsemTopArea #xsemTopWrapper #xsemTabs .nav.nav-tabs > li#xsemMenuDropdownToggler div.xsem-menu-dropdown-menu .dropdown-item:not(:first-child) {\n
margin-top: 10px;\n
}\n
\n
#xsem.backend #xsemTopArea #xsemTopWrapper #xsemTabs .nav.nav-tabs > li#xsemMenuDropdownToggler div.xsem-menu-dropdown-menu .dropdown-item.active {\n
font-weight: bold;\n
}\n
</style>\n
<svg width="20px" height="20px" viewBox="0 -0.5 33 33" display="none">\n
<g id="Vivid.JS" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="scale(1)">\n
<g id="Vivid-Icons" transform="translate(-903.000000, -411.000000)" fill="currentColor">\n
<g id="Icons" transform="translate(37.000000, 169.000000)">\n
<g id="star" transform="translate(858.000000, 234.000000)">\n
<g transform="translate(7.000000, 8.000000)" id="Shape">\n
<polygon\n
points="27.865 31.83 17.615 26.209 7.462 32.009 9.553 20.362 0.99 12.335 12.532 10.758 17.394 0 22.436 10.672 34 12.047 25.574 20.22">\n
</polygon>\n
</g>\n
</g>\n
</g>\n
</g>\n
</g>\n
</svg>\n
<div id="xsemTopArea" class="">\n
<nav aria-label="Brotkrumen" class="breadcrumb_wrapper xsem-breadcrumbs" data-a="seminarDetails"\n
data-c="SeminarCatalog__Core__Catalog__Controller__CatalogController">\n
<div class="breadcrumb">\n
<span class="crumb">\n
<a href="/kursangebot.html">Kursangebot</a>\n
</span>\n
<span class="crumb">\n
<a href="/kursangebot/kurs/sicherheit-und-gesundheit-im-malerhandwerk-45.html">Sicherheit und Gesundheit im Malerhandwerk [1912 / SG-MA]</a>\n
</span>\n
</div>\n
</nav>\n
\n
<div id="xsemTopWrapper" class="xsemHeaderNoTabs">\n
<div id="xsemHeadline">\n
<div class="headline">\n
<h1>\n
Sicherheit und Gesundheit im Malerhandwerk [1912 / SG-MA]\n
\n
</h1>\n
\n
\n
</div>\n
<div class="headerContent">\n
</div>\n
</div>\n
\n
</div>\n
\n
</div>\n
\n
<div id="xsemAlerts">\n
\n
\n
\n
\n
</div>\n
\n
\n
\n
<div class="modal fade" id="xsem_header_object_modified_confirm_modal" tabindex="-1" role="dialog">\n
<div class="modal-dialog modal-lg" role="document">\n
<div class="modal-content">\n
<div class="modal-header">\n
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span></button>\n
<h4 class="modal-title">\n
Der Datensatz wurde geändert.\n
</h4>\n
</div>\n
<div class="modal-body">\n
<p>Dieser Datensatz wurde zwischenzeitlich zuletzt von <span id="xsem_header_object_modified_confirm_modal_user">N/A</span> vor <span id="xsem_header_object_modified_confirm_modal_time">N/A</span> geändert.</p>\n
<p>Es könnten wichtige Änderungen verloren gehen, möchten Sie trotzdem Ihre Änderungen übernehmen?</p>\n
</div>\n
<div class="modal-footer">\n
<button type="button" class="btn btn-default" data-dismiss="modal">Abbrechen</button>\n
<a type="button" class="btn btn-primary" id="xsem_header_object_modified_confirm_modal_btn">Bestätigen</a>\n
</div>\n
</div>\n
</div>\n
</div>\n
\n
<script type="text/javascript">\n
\n
const tabContainer = document.getElementById('xsemTabs');\n
let realDropdownMenuBtnWidth = false;\n
const dropdownMenuBtnWidthThreshold = 3;\n
// Predicted width of dropdown btn, only for initialization, will be replaced later by automatic detection.\n
let dropdownMenuBtnWidth = 99 + dropdownMenuBtnWidthThreshold;\n
const dropdownMenuBtnLabel = "Mehr...";\n
let previousWidth = 0;\n
if (tabContainer) {\n
previousWidth = tabContainer.getBoundingClientRect().width;\n
}\n
\n
/**\n
* Ensures that all tabs in the navigation bar are in one row only. Overflowing tabs are moved to a dropdown menu.\n
*\n
* Dynamically adjusts the contents of the dropdown based on the width of the navigation bar.\n
* @author Justin Jansen <jjansen@databay.de>\n
* @param init\n
*/\n
function handleTabDropdown(init = false) {\n
const availableWidth = tabContainer.getBoundingClientRect().width;\n
// Important because ilias triggers several size changes due to the grid system\n
if (!init && availableWidth === previousWidth) {\n
return;\n
}\n
previousWidth = availableWidth;\n
\n
const tabList = tabContainer.querySelector('#xsemTabs .nav-tabs');\n
const tabs = Array.from(tabList.children);\n
let tabsToMove = [];\n
tabsToMove = getTabsOverceedWidth(tabs, availableWidth, tabsToMove);\n
const dropdownMenu = document.createElement('div');\n
dropdownMenu.classList.add('xsem-menu-dropdown-menu', 'dropdown-menu');\n
\n
// Remove tabs from tab list and add them to dropdown menu\n
let isDropTabActive = false;\n
tabsToMove.forEach(tab => {\n
const tabLink = tab.querySelector('a');\n
if (tabLink) {\n
const dropdownTab = tabLink.cloneNode(true);\n
dropdownTab.classList.add('dropdown-item');\n
if (tab.classList.contains('active')) {\n
isDropTabActive = true;\n
dropdownTab.classList.add('active');\n
}\n
dropdownMenu.appendChild(dropdownTab);\n
}\n
});\n
\n
const dropdownBtn = document.getElementById('xsemMenuDropdownToggler');\n
if (dropdownBtn) {\n
dropdownBtn.remove()\n
}\n
\n
if (tabsToMove.length > 0) {\n
const dropdownBtn = document.createElement('li');\n
dropdownBtn.classList.add('dropdown', 'pull-right');\n
if (isDropTabActive) {\n
dropdownBtn.classList.add('active');\n
}\n
dropdownBtn.id = 'xsemMenuDropdownToggler';\n
dropdownBtn.innerHTML = `\n
<a href="#" class="dropdown-toggle" data-toggle="dropdown">` + dropdownMenuBtnLabel + ` <span class="caret"></span></a>\n
`;\n
dropdownBtn.appendChild(dropdownMenu);\n
tabList.appendChild(dropdownBtn);\n
if (!realDropdownMenuBtnWidth) {\n
getWidthOfDropdownBtn()\n
}\n
}\n
}\n
\n
/**\n
* Returns all tabs that exceed the specified available width.\n
*\n
* Uses a recursive solution to add only tabs that actually go over the available width without a dropdown button.\n
* @author Justin Jansen <jjansen@databay.de>\n
* @param tabs\n
* @param availableWidth\n
* @param overflowingTabs\n
* @param initMove\n
* @returns {*}\n
*/\n
function getTabsOverceedWidth(tabs, availableWidth, overflowingTabs, initMove = false) {\n
let totalWidth = 0;\n
\n
for (const tab of tabs) {\n
totalWidth += getFullWidthOfTab(tab);\n
\n
if (tab.classList.contains('dropdown') || tab.classList.contains('xsem-menu-back-btn')) {\n
continue; // Skip certain tabs\n
}\n
\n
if (totalWidth >= availableWidth) {\n
if (!initMove) {\n
return getTabsOverceedWidth(tabs, availableWidth - dropdownMenuBtnWidth, overflowingTabs, true);\n
}\n
overflowingTabs.push(tab);\n
tab.style.display = 'none';\n
} else {\n
tab.style.display = 'inherit';\n
const index = overflowingTabs.indexOf(tab);\n
if (index > -1) {\n
overflowingTabs.splice(index, 1);\n
}\n
}\n
}\n
\n
return overflowingTabs;\n
}\n
\n
/**\n
* Fetches the complete width of the dropdown menu button, if any, and uses it for further calculations.\n
*\n
* An accurate solution if the button has a different size than originally intended (e.g. 90px) due to overriding styling.\n
* The size is needed to give the dropdown menu button always enough space in the same row of the navigation bar and when the tabs have to disappear.\n
* @author Justin Jansen <jjansen@databay.de>\n
* @returns {number}\n
*/\n
function getWidthOfDropdownBtn() {\n
const dropdownBtn = document.getElementById('xsemMenuDropdownToggler');\n
\n
if (dropdownBtn) {\n
realDropdownMenuBtnWidth = true;\n
dropdownMenuBtnWidth = getFullWidthOfTab(dropdownBtn) + dropdownMenuBtnWidthThreshold;\n
}\n
}\n
\n
/**\n
* Returns the complete width of the given element with margin, padding, border and offsetWidth included.\n
* @author Justin Jansen <jjansen@databay.de>\n
* @param element\n
* @returns {number}\n
*/\n
function getFullWidthOfTab(element) {\n
const styles = getComputedStyle(element);\n
\n
const isHidden = styles.display === 'none';\n
\n
if (isHidden) {\n
element.style.display = 'block';\n
}\n
\n
// Get values of padding, border, and margin\n
const paddingLeft = parseFloat(styles.paddingLeft);\n
const paddingRight = parseFloat(styles.paddingRight);\n
const borderLeft = parseFloat(styles.borderLeftWidth);\n
const borderRight = parseFloat(styles.borderRightWidth);\n
const marginLeft = parseFloat(styles.marginLeft);\n
const marginRight = parseFloat(styles.marginRight);\n
\n
const fullWidth =\n
element.offsetWidth +\n
marginLeft + marginRight +\n
paddingLeft + paddingRight +\n
borderLeft + borderRight;\n
\n
if (isHidden) {\n
element.style.display = 'none';\n
}\n
\n
return fullWidth;\n
}\n
\n
if (tabContainer) {\n
$(function() {\n
// Important because ilias triggers several size changes due to the grid system\n
handleTabDropdown(true);\n
// change debounce delay higher, it gets triggered to often\n
const resizeObserver = new ResizeObserver(debounce(handleTabDropdown, 1));\n
resizeObserver.observe(tabContainer);\n
});\n
}\n
\n
const fetchLastModifiedUrl = document.querySelector('[name="xsem-header-object-url"]')?.value;\n
\n
\n
\n
\n
\n
// add an event listener on every form submit and call fetchLastModified, then check with the data if the lastModifiedTime is bigger then modifiedTimestamp\n
function submitForm(event) {\n
setFormValidation(event.target, true);\n
event.submitter.click();\n
}\n
\n
function getCurrentLastModifiedTime() {\n
let modifiedTimestamp = 0;\n
const changeDate = document.querySelector('input[name="xsem-header-object-change-date"]');\n
if (changeDate) {\n
modifiedTimestamp = Number(changeDate.value);\n
}\n
return modifiedTimestamp;\n
}\n
\n
let modifiedTimestamp = getCurrentLastModifiedTime();\n
// if yes then show a confirm dialog if the user wants to leave the page\n
if (modifiedTimestamp > 0) {\n
document.addEventListener('submit', function (event) {\n
\n
const isValidated = isFormValidated(event.target);\n
if (isValidated) {\n
return;\n
}\n
\n
event.preventDefault();\n
fetchLastObjectModified(fetchLastModifiedUrl)\n
.then(data => {\n
\n
// if the fetch failed, just submit the form\n
if (!data.success) {\n
submitForm(event);\n
return;\n
}\n
let modifiedTimestamp = getCurrentLastModifiedTime();\n
const lastModifiedTime = Number(data.lastModifiedTime);\n
\n
if (lastModifiedTime > modifiedTimestamp) {\n
initModal(event, data.lastModifiedBy, data.formattedLastModified);\n
} else {\n
submitForm(event);\n
}\n
});\n
});\n
}\n
\n
const initModal = (event, lastModifiedBy, formattedLastModified) => {\n
const modal = document.getElementById('xsem_header_object_modified_confirm_modal');\n
modal.querySelector('#xsem_header_object_modified_confirm_modal_user').innerText = lastModifiedBy;\n
modal.querySelector('#xsem_header_object_modified_confirm_modal_time').innerText = formattedLastModified;\n
const submitModalBtn = document.getElementById('xsem_header_object_modified_confirm_modal_btn');\n
submitModalBtn.addEventListener('click', function () {\n
submitForm(event);\n
})\n
$('#xsem_header_object_modified_confirm_modal').modal('show');\n
}\n
\n
const setFormValidation = (form, isValidated) => {\n
form.setAttribute('data-xsem-header-object-form-is-validate', isValidated ? '1' : '0');\n
}\n
\n
const isFormValidated = (form) => {\n
const value = form.getAttribute('data-xsem-header-object-form-is-validate',)\n
\n
return value === '1';\n
}\n
</script>\n
\n
\n
<div id="seminarDetails" class="details">\n
<div class="row">\n
<div class="col-sm-12 col-md-9">\n
\n
\n
\n
<div class="detailHeaderHeadline favourite-wrapper mb-l">\n
<xsem:Favourites seminar="_context_pass_0" favouriteList="_context_pass_1"></xsem:Favourites>\n
<h1>\n
Sicherheit und Gesundheit im Malerhandwerk\n
<xsem:EditPencil\n
object="_context_pass_2"\n
link="/seminarverwaltung/kurse/45.html"\n
target="editSeminar"\n
>\n
</xsem:EditPencil>\n
</h1>\n
</div>\n
\n
<div class="intro">\n
<p>Im Malerhandwerk treffen vielfältige Gefährdungen auf wechselnde Arbeitsumgebungen: Chemische Stoffe, Arbeiten in Höhen, ergonomische Belastungen und gegenseitige Gefährdungen auf der Baustelle gehören zum Alltag. Dieses Seminar vermittelt die Grundlagen des Arbeitsschutzes im Malerhandwerk – von der rechtssicheren Gefährdungsbeurteilung über den Einsatz geeigneter Schutzmaßnahmen bis hin zur sicheren Einrichtung von Baustellen. Die Teilnehmer:innen erhalten konkrete Handlungshilfen für ihren Führungsalltag.</p>\n
</div>\n
\n
<div class="description">\n
<p data-start="1056" data-end="1429">Das Seminar richtet sich an Aufsichtführende und andere Führungskräfte im Malerhandwerk, die mit dem Arbeitsschutz betraut sind. Ziel ist es, ein praxisnahes Verständnis für arbeitsschutzrelevante Themen und die Umsetzung geeigneter Maßnahmen zu vermitteln. Die Schulung eignet sich ebenfalls als Fortbildung für Sicherheitsbeauftragte und Fachkräfte für Arbeitssicherheit.</p>\n
</div>\n
\n
\n
\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n
<div class="seminarDetailsAccordion mt-l">\n
<h2>Weitere Kursinformationen</h2>\n
\n
<div class="panel-group" id="accordionSeminarDetails" role="tablist" aria-multiselectable="true">\n
\t<div class="panel panel-accordion">\n
\t\t<div id="headingContent"\n
\t\t\t class="panel-heading collapsed"\n
\t\t\t role="button"\n
\t\t\t data-toggle="collapse"\n
\t\t\t data-parent="#accordionSeminarDetails"\n
\t\t\t href="#collapseContent"\n
\t\t\t aria-expanded="true"\n
\t\t\t aria-controls="collapseContent">\n
\t\t\t<h4 class="panel-title">\n
\t\t\t\tInhalte\n
\t\t\t</h4>\n
\t\t</div>\n
\t\t<div id="collapseContent"\n
\t\t\t class="panel-collapse collapse"\n
\t\t\t role="tabpanel"\n
\t\t\t aria-labelledby="headingContent">\n
\t\t\t<div class="panel-body">\n
\t\t\t\t\t\t\t\t\t<ul data-start="1454" data-end="2015">\r\n
<li data-start="1454" data-end="1492">\r\n
<p data-start="1456" data-end="1492">Aufgaben und Leistungen der BG BAU</p>\r\n
</li>\r\n
<li data-start="1493" data-end="1549">\r\n
<p data-start="1495" data-end="1549">Arbeitsschutzgesetzgebung: Verantwortung und Haftung</p>\r\n
</li>\r\n
<li data-start="1550" data-end="1594">\r\n
<p data-start="1552" data-end="1594">Einführung in die Gefährdungsbeurteilung</p>\r\n
</li>\r\n
<li data-start="1595" data-end="1659">\r\n
<p data-start="1597" data-end="1659">Technische, organisatorische und persönliche Schutzmaßnahmen</p>\r\n
</li>\r\n
<li data-start="1660" data-end="1716">\r\n
<p data-start="1662" data-end="1716">Umgang mit gegenseitigen Gefährdungen auf Baustellen</p>\r\n
</li>\r\n
<li data-start="1717" data-end="1747">\r\n
<p data-start="1719" data-end="1747">Ergonomie im Malerhandwerk</p>\r\n
</li>\r\n
<li data-start="1748" data-end="1812">\r\n
<p data-start="1750" data-end="1812">Gefahrstoffe: Lagerung, Transport, Einsatz auf der Baustelle</p>\r\n
</li>\r\n
<li data-start="1813" data-end="1902">\r\n
<p data-start="1815" data-end="1902">Sicheres Arbeiten an hochgelegenen Arbeitsplätzen: Gerüste, Leitern, Hubarbeitsbühnen</p>\r\n
</li>\r\n
<li data-start="1903" data-end="1957">\r\n
<p data-start="1905" data-end="1957">Baustelleneinrichtung: Anforderungen und Beispiele</p>\r\n
</li>\r\n
<li data-start="1958" data-end="2015">\r\n
<p data-start="1960" data-end="2015">Organisation wirksamer Erster Hilfe auf der Baustelle</p>\r\n
</li>\r\n
</ul>\n
\t\t\t\t\t\t\t</div>\n
\t\t</div>\n
\t</div>\n
\t \t<div class="panel panel-accordion">\n
\t\t<div id="headingTargetGroups"\n
\t\t\t class="panel-heading collapsed"\n
\t\t\t role="button"\n
\t\t\t data-toggle="collapse"\n
\t\t\t data-parent="#accordionSeminarDetails"\n
\t\t\t href="#collapseTargetGroups"\n
\t\t\t aria-expanded="true"\n
\t\t\t aria-controls="collapseTargetGroups">\n
\t\t\t<h4 class="panel-title">\n
\t\t\t\tZielgruppen\n
\t\t\t</h4>\n
\t\t</div>\n
\t\t<div id="collapseTargetGroups"\n
\t\t\t class="panel-collapse collapse"\n
\t\t\t role="tabpanel"\n
\t\t\t aria-labelledby="headingTargetGroups">\n
\t\t\t<div class="panel-body">\n
\t\t\t\t\t\t\t\t\t<p> </p>\r\n
<ul>\r\n
<li data-start="2062" data-end="2099">\r\n
<p data-start="2064" data-end="2099">Aufsichtführende im Malerhandwerk</p>\r\n
</li>\r\n
<li data-start="2100" data-end="2149">\r\n
<p data-start="2102" data-end="2149">Führungskräfte mit Arbeitsschutzverantwortung</p>\r\n
</li>\r\n
<li data-start="2150" data-end="2176">\r\n
<p data-start="2152" data-end="2176">Sicherheitsbeauftragte</p>\r\n
</li>\r\n
<li data-start="2177" data-end="2213">\r\n
<p data-start="2179" data-end="2213">Fachkräfte für Arbeitssicherheit</p>\r\n
</li>\r\n
</ul>\r\n
<p> </p>\n
\t\t\t\t\t\t\t</div>\n
\t\t</div>\n
\t</div>\n
\t \t<div class="panel panel-accordion">\n
\t\t<div id="headingRequirements"\n
\t\t\t class="panel-heading collapsed"\n
\t\t\t role="button"\n
\t\t\t data-toggle="collapse"\n
\t\t\t data-parent="#accordionSeminarDetails"\n
\t\t\t href="#collapseRequirements"\n
\t\t\t aria-expanded="true"\n
\t\t\t aria-controls="collapseRequirements">\n
\t\t\t<h4 class="panel-title">\n
\t\t\t\tVoraussetzungen\n
\t\t\t</h4>\n
\t\t</div>\n
\t\t<div id="collapseRequirements"\n
\t\t\t class="panel-collapse collapse"\n
\t\t\t role="tabpanel"\n
\t\t\t aria-labelledby="headingRequirements">\n
\t\t\t<div class="panel-body">\n
\t\t\t\t\t\t\t\t\t<p>Keine besonderen Vorkenntnisse erforderlich.</p>\n
\t\t\t\t\t\t\t</div>\n
\t\t</div>\n
\t</div>\n
\t \t<div class="panel panel-accordion">\n
\t\t<div id="headingAgenda"\n
\t\t\t class="panel-heading collapsed"\n
\t\t\t role="button"\n
\t\t\t data-toggle="collapse"\n
\t\t\t data-parent="#accordionSeminarDetails"\n
\t\t\t href="#collapseAgenda"\n
\t\t\t aria-expanded="true"\n
\t\t\t aria-controls="collapseAgenda">\n
\t\t\t<h4 class="panel-title">\n
\t\t\t\tProgramm\n
\t\t\t</h4>\n
\t\t</div>\n
\t\t<div id="collapseAgenda"\n
\t\t\t class="panel-collapse collapse"\n
\t\t\t role="tabpanel"\n
\t\t\t aria-labelledby="headingAgenda">\n
\t\t\t<div class="panel-body">\n
\t\t\t\t\t\t\t\t\t<p data-start="2325" data-end="2337"><strong data-start="2325" data-end="2335">Tag 1:</strong></p>\r\n
<ul data-start="2338" data-end="2517">\r\n
<li data-start="2338" data-end="2382">\r\n
<p data-start="2340" data-end="2382">Einführung: BG BAU, Rechtliches, Haftung</p>\r\n
</li>\r\n
<li data-start="2383" data-end="2426">\r\n
<p data-start="2385" data-end="2426">Gefährdungsbeurteilung im Malerhandwerk</p>\r\n
</li>\r\n
<li data-start="2427" data-end="2471">\r\n
<p data-start="2429" data-end="2471">Gegenseitige Gefährdungen auf Baustellen</p>\r\n
</li>\r\n
<li data-start="2472" data-end="2517">\r\n
<p data-start="2474" data-end="2517">Gefahrstoffe: Umgang, Transport, Lagerung</p>\r\n
</li>\r\n
</ul>\r\n
<p data-start="2519" data-end="2531"><strong data-start="2519" data-end="2529">Tag 2:</strong></p>\r\n
<ul data-start="2532" data-end="2768">\r\n
<li data-start="2532" data-end="2591">\r\n
<p data-start="2534" data-end="2591">Persönliche Schutzausrüstung und ergonomisches Arbeiten</p>\r\n
</li>\r\n
<li data-start="2592" data-end="2655">\r\n
<p data-start="2594" data-end="2655">Sicherer Einsatz von Leitern, Gerüsten und Hubarbeitsbühnen</p>\r\n
</li>\r\n
<li data-start="2656" data-end="2697">\r\n
<p data-start="2658" data-end="2697">Baustelleneinrichtung und Erste Hilfe</p>\r\n
</li>\r\n
<li data-start="2698" data-end="2768">\r\n
<p data-start="2700" data-end="2768">Umsetzung im Betrieb: Praktische Beispiele und Erfahrungsaustausch</p>\r\n
</li>\r\n
</ul>\r\n
<p data-start="2770" data-end="2832"><em data-start="2770" data-end="2832">(Optional Tag 3: Vertiefende Praxisübungen und Fallanalysen)</em></p>\n
\t\t\t\t\t\t\t</div>\n
\t\t</div>\n
\t</div>\n
\t \t<div class="panel panel-accordion">\n
\t\t<div id="headingLearningGoals"\n
\t\t\t class="panel-heading collapsed"\n
\t\t\t role="button"\n
\t\t\t data-toggle="collapse"\n
\t\t\t data-parent="#accordionSeminarDetails"\n
\t\t\t href="#collapseLearningGoals"\n
\t\t\t aria-expanded="true"\n
\t\t\t aria-controls="collapseLearningGoals">\n
\t\t\t<h4 class="panel-title">\n
\t\t\t\tLernziele\n
\t\t\t</h4>\n
\t\t</div>\n
\t\t<div id="collapseLearningGoals"\n
\t\t\t class="panel-collapse collapse"\n
\t\t\t role="tabpanel"\n
\t\t\t aria-labelledby="headingLearningGoals">\n
\t\t\t<div class="panel-body">\n
\t\t\t\t\t\t\t\t\t<p> </p>\r\n
<ul>\r\n
<li data-start="2868" data-end="2945">\r\n
<p data-start="2870" data-end="2945">Sie erkennen und bewerten die spezifischen Gefährdungen im Malerhandwerk.</p>\r\n
</li>\r\n
<li data-start="2946" data-end="3013">\r\n
<p data-start="2948" data-end="3013">Sie können eine Gefährdungsbeurteilung fachgerecht durchführen.</p>\r\n
</li>\r\n
<li data-start="3014" data-end="3093">\r\n
<p data-start="3016" data-end="3093">Sie kennen geeignete Maßnahmen zur Vermeidung oder Minimierung von Risiken.</p>\r\n
</li>\r\n
<li data-start="3094" data-end="3179">\r\n
<p data-start="3096" data-end="3179">Sie sind in der Lage, technische und organisatorische Schutzmaßnahmen umzusetzen.</p>\r\n
</li>\r\n
<li data-start="3180" data-end="3283">\r\n
<p data-start="3182" data-end="3283">Sie wissen, wie Baustellen sicher eingerichtet und Arbeiten in der Höhe sicher durchgeführt werden.</p>\r\n
</li>\r\n
<li data-start="3284" data-end="3369">\r\n
<p data-start="3286" data-end="3369">Sie stärken Ihre Rolle als aufsichtführende oder verantwortliche Person im Betrieb.</p>\r\n
</li>\r\n
</ul>\r\n
<p> </p>\n
\t\t\t\t\t\t\t</div>\n
\t\t</div>\n
\t</div>\n
\t \t<div class="panel panel-accordion">\n
\t\t<div id="headingQualification"\n
\t\t\t class="panel-heading collapsed"\n
\t\t\t role="button"\n
\t\t\t data-toggle="collapse"\n
\t\t\t data-parent="#accordionSeminarDetails"\n
\t\t\t href="#collapseQualification"\n
\t\t\t aria-expanded="true"\n
\t\t\t aria-controls="collapseQualification">\n
\t\t\t<h4 class="panel-title">\n
\t\t\t\tAbschluss\n
\t\t\t</h4>\n
\t\t</div>\n
\t\t<div id="collapseQualification"\n
\t\t\t class="panel-collapse collapse"\n
\t\t\t role="tabpanel"\n
\t\t\t aria-labelledby="headingQualification">\n
\t\t\t<div class="panel-body">\n
\t\t\t\t\t\t\t\t\t<p data-start="3409" data-end="3508">Die Teilnehmenden erhalten eine Teilnahmebestätigung über den erfolgreichen Abschluss des Seminars.</p>\n
\t\t\t\t\t\t\t</div>\n
\t\t</div>\n
\t</div>\n
\t \t<div class="panel panel-accordion">\n
\t\t<div id="headingHints"\n
\t\t\t class="panel-heading collapsed"\n
\t\t\t role="button"\n
\t\t\t data-toggle="collapse"\n
\t\t\t data-parent="#accordionSeminarDetails"\n
\t\t\t href="#collapseHints"\n
\t\t\t aria-expanded="true"\n
\t\t\t aria-controls="collapseHints">\n
\t\t\t<h4 class="panel-title">\n
\t\t\t\tHinweise\n
\t\t\t</h4>\n
\t\t</div>\n
\t\t<div id="collapseHints"\n
\t\t\t class="panel-collapse collapse"\n
\t\t\t role="tabpanel"\n
\t\t\t aria-labelledby="headingHints">\n
\t\t\t<div class="panel-body">\n
\t\t\t\t\t\t\t\t\t<ul data-start="3534" data-end="3709">\r\n
<li data-start="3534" data-end="3588">\r\n
<p data-start="3536" data-end="3588"><strong data-start="3536" data-end="3546">Dauer:</strong> 16 Lehreinheiten (zwei- oder dreitägig)</p>\r\n
</li>\r\n
<li data-start="3589" data-end="3633">\r\n
<p data-start="3591" data-end="3633">Keine besonderen Vorkenntnisse notwendig</p>\r\n
</li>\r\n
<li data-start="3634" data-end="3709">\r\n
<p data-start="3636" data-end="3709">Praxisnahe Vermittlung mit zahlreichen Beispielen aus dem Arbeitsalltag</p>\r\n
</li>\r\n
</ul>\n
\t\t\t\t\t\t\t</div>\n
\t\t</div>\n
\t</div>\n
\t </div>\n
<script type="text/javascript">\n
//$('.panel-collapse').collapse();\n
</script>\n
</div>\n
\n
\n
\n
\n
\n
\n
\n
<a name="courseDates"></a>\n
\n
\n
<div class="mt-xl">\n
<form action="" method="POST">\n
<input type="hidden" name="filter[send]" value="1"/>\n
<div class="row cl-filter">\n
<div class="col-sm-6">\n
<h2>Nächster Kurstermin</h2>\n
</div>\n
<div class="col-sm-6 cl-filter-languages">\n
<div class="pull-right">\n
<span>Kurssprachen</span>\n
\n
<input type="hidden" name="filter[course_language][]" value=""><select id="selectMultiple68b861be9adb3" multiple="multiple" name="filter[course_language][]">\n
\t <option value="1">Deutsch</option>\n
</select>\n
<script type="text/javascript">\n
$(document).ready(function () {\n
$('#selectMultiple68b861be9adb3').multiselect({\n
nonSelectedText: 'Nichts ausgewählt',\n
nSelectedText: 'ausgewählt',\n
\t\t\tallSelectedText : 'Alle ausgewählt',\n
\t\t\tnumberDisplayed: 2,\n
});\n
});\n
</script>\n
<style>\n
.dropdown-menu .divider {\n
height: 1px !important;\n
margin: 9px 0 !important;\n
background-color: #e5e5e5 !important;\n
}\n
</style>\n
\n
\n
<button class="btn btn-primary btn-sm"\n
name="filter[submit]"\n
type="submit">Filtern\n
</button>\n
</div>\n
</div>\n
</div>\n
</form>\n
\n
\n
<style>\n
\t.xsem-related-bundles-event-btn {\n
\t\tpadding: 3px 10px !important;\n
\t\ttext-transform: uppercase !important;\n
\t\tfont-weight: 500 !important;\n
\t}\n
</style>\n
\t\t \n
\t<div class="card card-event card-sections card-bordered favourite-wrapper ">\n
\t\t<xsem:Favourites seminar="_context_pass_3" favouriteList="_context_pass_4"></xsem:Favourites>\n
\t\t<section class="card-header">\n
\t\t\t\t\t\t<div class="row">\n
\t\t\t\t<div class="col-xs-12 col-sm-6">\n
\t\t\t\t\t<h5 class="card-column-headline">Kurstermin</h5>\n
\t\t\t\t\t 05. - 11.09.2025\n
\t\t\t\t\t\t\t\t\t\t\t<xsem:EditPencil\n
\t\t\t\t\t\t\t\tobject="_context_pass_5"\n
\t\t\t\t\t\t\t\tlink="/seminarverwaltung/kurse/sicherheit-und-gesundheit-im-malerhandwerk-45/termine/sicherheit-und-gesundheit-im-malerhandwerk-05.--11.09.2025-45/bearbeiten.html?parentObject=Seminar"\n
\t\t\t\t\t\t\t\ttarget="editEvent"\n
\t\t\t\t\t\t>\n
\t\t\t\t\t\t</xsem:EditPencil>\n
\t\t\t\t\t\t\t\t\t</div>\n
\t\t\t\t<div class="col-xs-6 col-sm-3">\n
\t\t\t\t\t<h5 class="card-column-headline">Kurssprache</h5>\n
\t\t\t\t\t <span class="nowrap">Deutsch <img src="./Customizing/global/plugins/Services/UIComponent/UserInterfaceHook/SeminarCatalog/Resources//img/flags/de.png" alt="Kurssprache: Deutsch"></span>\t\t\t\t</div>\n
\t\t\t\t<div class="col-xs-6 col-sm-3">\n
\t\t\t\t\t\t\t\t\t\t\t<h5 class="card-column-headline">Kurs-Nr.</h5>\n
\t\t\t\t\t\t1912 / SG-MA\n
\t\t\t\t\t\t\t\t\t</div>\n
\t\t\t</div>\n
\t\t</section>\n
\t\t<section class="card-body">\n
\t\t\t<div class="row">\n
\t\t\t\t<div class="col-xs-12 col-sm-6">\n
\t\t\t\t\t\t\t\t\t\t\t<h5 class="card-column-headline">Kurs</h5>\n
\t\t\t\t\t\n
\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class="card-title">\n
\t\t\t\t\t\t\t\n
Sicherheit und Gesundheit im Malerhandwerk\n
<xsem:EditPencil\n
\t\tobject="_context_pass_6"\n
\t\tlink="/seminarverwaltung/kurse/sicherheit-und-gesundheit-im-malerhandwerk-45/termine/sicherheit-und-gesundheit-im-malerhandwerk-05.--11.09.2025-45/bearbeiten.html?parentObject=Seminar"\n
\t\ttarget="editEvent"\n
>\n
</xsem:EditPencil>\n
\t\t\t\t\t</div>\n
\n
\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\n
\n
\t\t\t\t<div class="col-xs-6 col-sm-3">\n
\t\t\t\t\t\t\t\t\t\t\t<h5 class="card-column-headline">Kursort</h5>\n
\t\t\t\t\t\t<xsem:FormatEventLocation event="_context_pass_7" cityOnly></xsem:FormatEventLocation>\n
\t\t\t\t\t\t\t\t\t</div>\n
\n
\t\t\t\t <div class="col-xs-6 col-sm-3 online-event-pricecontainer">\n
\t\t\t\t\t \t\t\t\t\t\t \t\t\t\t\t\t\t \t\t\t\t\t\t\t\t <h5 class="card-column-headline">Kursgebühr</h5>\n
\t\t\t\t\t\t\t\t \t<div class="price-block">\n
\t\t\t\t\t\t<p class="pb-best-price">\n
\t\t\t\t\t\t\t<span class="pb-price">100,- EUR</span>\n
\t\t\t\t<br><span class="pb-vat">\n
\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</span>\n
\t\t\t\t \t\t</p>\n
\n
\t\t\t\t\t\t\t</div>\n
\t\t\t\t\t\t\t \t\t\t\t\t\t \t\t\t\t\t \t\t\t\t\t \t\t\t\t\t \t\t\t\t\t\t<p>\n
<a class="btn btn-primary booking"\n
href="/buchen/45.html?disabled=0">\n
Buchen\n
</a>\n
\n
\n
</p>\n
\t\t\t\t\t \t\t\t\t\t \t\t\t\t </div>\n
\t\t\t</div>\n
\n
\t\t\t\t\t</section>\n
\t\t\t\t\t\t\t\t\t<section class="card-footer ce-accordion closed">\n
\t\t\t\t\t<div class="ce-info">\n
<div id="event-detail-row-45" class="row">\n
<div class="col-sm-12 col-md-6 mb-l">\n
<div class="info-table">\n
<div class="table-row wide">\n
<div class="label-column">Kursort:</div>\n
<div class="info-column">\n
<div class="location">\n
\n
<p>\n
<b>Schulungszentrum Ricklingen</b>\n
</p>\n
\n
<div class="address-row info-table info-table-small">\n
<div class="table-row">\n
<div class="icon-column">\n
<span class="glyphicon glyphicon-record"\n
title="Raum"></span>\n
</div>\n
<div class="info-column">\n
1\n
</div>\n
</div>\n
<div class="table-row">\n
<div class="icon-column">\n
<span class="glyphicon glyphicon-home"\n
title="Gebäude"></span>\n
</div>\n
<div class="info-column">\n
Nebengebäude, 1 </div>\n
</div>\n
<div class="table-row">\n
<div class="icon-column">\n
<span class="glyphicon glyphicon-map-marker"\n
title="Anschrift"></span>\n
</div>\n
<div class="info-column">\n
Wettgerber Bach,\n
30453 Ricklingen,\n
Deutschland </div>\n
</div>\n
</div>\n
</div>\n
</div>\n
</div>\n
</div>\n
\n
\n
\n
</div>\n
\n
<div class="col-sm-12 col-md-6 mb-l">\n
\n
<div class="map">\n
<div class="event-details-map mb-m">\n
<!-- OPENSTREETMAPS START -->\n
<div id="maploc1-68b861beaa1bf"\n
class="mapBlock mt-m mb-m"\n
style="height: 200px; width: 100%"\n
data-mapdata='{"id":"loc1-68b861beaa1bf","searchText":"Wettgerber Bach 30453 Ricklingen Deutschland","description":"Schulungszentrum Ricklingen<br>Wettgerber Bach<br>30453 Ricklingen<br>Deutschland"}'\n
data-longitude="9.681339116927258"\n
data-latitude="52.33289610883518">\n
</div>\n
<!-- OPENSTREETMAPS END -->\n
</div>\n
<div id="navloc1-68b861beaa1bf" class="mapNavigation text-right mb-m">\n
<a class="btn btn-primary mapNavigationLink"\n
id="navLinkloc1-68b861beaa1bf"\n
target="_blank"\n
href="https://www.google.de/maps/dir//Wettgerber Bach 30453 Ricklingen Deutschland">\n
Routenplaner\n
</a>\n
</div>\n
</div>\n
\n
</div>\n
</div>\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
<div class="row">\n
<div class="col-sm-12 col-md-6 mb-l">\n
\n
<div class="info-table">\n
<div class="table-row wide">\n
<div class="label-column">Hotelempfehlungen:</div>\n
<div class="info-column">\n
<div class="hotel">\n
<p class="locationAddress">\n
<a class="hotelWeblink" href="https://www.databay.de"\n
target="_blank">\n
<b>Hotel am See</b>\n
<span class="glyphicon glyphicon-link"\n
title="Webseite"></span>\n
</a>\n
<br>\n
</p>\n
\n
<div class="address-row info-table info-table-small">\n
<div class="table-row">\n
<div class="icon-column">\n
<span class="glyphicon glyphicon-map-marker"\n
title="Anschrift"></span>\n
</div>\n
<div class="info-column">\n
Seeufer 1, 12345 Seestadt\n
</div>\n
</div>\n
</div>\n
<div class="address-row info-table info-table-small">\n
<div class="table-row">\n
<div class="icon-column">\n
<span class="glyphicon glyphicon-earphone"\n
title="Fon"></span>\n
</div>\n
<div class="info-column">\n
<a class="hotelWeblink"\n
href="tel:123456789">123456789</a>\n
</div>\n
</div>\n
</div>\n
<div class="address-row info-table info-table-small">\n
<div class="table-row">\n
<div class="icon-column">\n
<span class="glyphicon glyphicon-envelope"\n
title="E-Mail"></span>\n
</div>\n
<div class="info-column">\n
<a class="hotelWeblink"\n
href="mailto:jc@databay.de">jc@databay.de</a>\n
</div>\n
</div>\n
</div>\n
</div>\n
</div>\n
</div>\n
</div>\n
\n
\n
</div>\n
</div>\n
\n
\n
<div class="row">\n
<div class="col-sm-12 col-md-6 mb-l">\n
<div class="info-table">\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
</div>\n
\n
</div>\n
</div>\n
\n
</div>\n
\n
<div id="cancellation-info45">\n
<div style="padding-top:30px;">\n
\n
</div>\n
</div>\n
<style>\n
#xsem #cancellation-info45 {\n
display: none;\n
}\n
</style>\n
\t\t\t\t\t<div class="ce-accordion-header">\n
\t\t\t\t\t\t<button id="btnOpenAccordion45">Weitere Informationen</button>\n
\t\t\t\t\t</div>\n
\t\t\t\t</section>\n
\t\t\t\t\t\t</div>\n
\n
</div>\n
\n
\n
\n
\n
\n
\n
\n
<div class="mt-xl">\n
\n
\n
\n
</div>\n
\n
\n
<p id="BackToCourseSelection" class="mt-xl">\n
<a href="/kursangebot.html"\n
class="btn btn-primary">Zur Kursauswahl</a>\n
<p>\n
</div>\n
\n
<div class="col-sm-12 col-md-3">\n
<p class="mb-m">\n
<a class="btn btn-anker"\n
href="#courseDates"\n
onclick="scrollToAnchor('courseDates');return false;"\n
>\n
Zu den Kursen\n
</a>\n
</p>\n
\n
\n
</div>\n
</div>\n
</div>\n
</div>\n
"""
/srv/www/bgphoenics2.invorbereitung.de/ilias/vendor/twig/twig/src/TemplateWrapper.php
/**
* @return iterable<scalar|\Stringable|null>
*/
public function stream(array $context = []): iterable
{
yield from $this->template->yield($context);
}
/**
* @return iterable<scalar|\Stringable|null>
*/
public function streamBlock(string $name, array $context = []): iterable
{
yield from $this->template->yieldBlock($name, $context);
}
public function render(array $context = []): string
{
return $this->template->render($context);
}
/**
* @return void
*/
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
$this->template->display($context, \func_get_args()[1] ?? []);
}
public function hasBlock(string $name, array $context = []): bool
{
return $this->template->hasBlock($name, $context);
}
/**
* @return string[] An array of defined template block names
*/
Arguments
array:5 [
"seminar" => SeminarCatalog\Core\Seminar\Model\Seminar {#3326}
"currentEvent" => null
"currentUser" => SeminarCatalog\Core\User\Model\User {#382}
"filter" => null
"relatedBundles" => []
]
/srv/www/bgphoenics2.invorbereitung.de/ilias/Core/Catalog/Classes/Controller/CatalogController.php
}
if ($seminar->getType() == \SeminarCatalog\Core\Seminar\Model\Seminar::TYPE_EXTERNAL) {
//return $this->redirect('catalog');
}
$this->setPageTitle($seminar->getTitle());
$template = $this->twig->load('SeminarDetails.twig');
$HeadHtmlService = ObjectManager::get(HeadHtmlService::class);
$HeadHtmlService->addMetaTag('keywords', $seminar->getTags());
if (!$seminar->isVisible(-1, true)) {
throw new \SeminarCatalog\Exception\PublicException;
}
$relatedBundles = ObjectManager::get(BundleRepository::class)->getRelatedBundlesBySeminar($seminar);
return $template->render(
array(
'seminar' => $seminar,
'currentEvent' => $this->eventRepository->findOneById($eventId),
'currentUser' => $this->currentUser,
'filter' => $_SESSION[FilterService::$filterMap[self::class]] ?? null,
'relatedBundles' => $relatedBundles,
)
);
}
/**
* @access isAnybody
*
* @param int $parentId
* @param string $eventType
* @param int $showEventRequests
*
* @return RedirectControllerResult|string
* @throws PublicException
Arguments
array:5 [
"seminar" => SeminarCatalog\Core\Seminar\Model\Seminar {#3326}
"currentEvent" => null
"currentUser" => SeminarCatalog\Core\User\Model\User {#382}
"filter" => null
"relatedBundles" => []
]
/srv/www/bgphoenics2.invorbereitung.de/ilias/classes/Controller/BaseController.php
$this,
'handleParameters',
$_GET
);
$this->handleParameters(...$params);
}
if (method_exists($this, 'initializeAction')) {
$params = ClassService::convertGetValuesToMethodParameterValues(
$this,
'initializeAction',
$_GET
);
$this->initializeAction(...$params);
}
$cmd = $cmd . 'Action';
$params = ClassService::convertGetValuesToMethodParameterValues($this, $cmd, $_GET);
$html = $this->$cmd(...$params);
global $tpl;
if ($tpl) {
if ($this->getPageTitle() != '') {
$tpl->setTitle($this->getPageTitle());
} else {
// This is a bad idea because it will break the page title in the repository
$tpl->setTitle(LanguageService::translate('default_page_header'));
}
if ($this->getPageIcon() != '') {
$tpl->setTitleIcon($this->getPageIcon());
}
}
return $html;
}
throw new AuthenticationException(get_class($this), $cmd);
Arguments
/srv/www/bgphoenics2.invorbereitung.de/ilias/classes/SeminarCatalogKernel.php
$router = ObjectManager::get(\SeminarCatalog\Core\Routing\Service\CoreRouter::class);
try {
if ($request->getRequestUri()) {
if (strpos($request->getRequestUri(), '/index.php?') === 0) {
throw new ResourceNotFoundException('URLs starting with /index.php? are not allowed');
}
}
$match = $router->match($request);
$router->resolveMatch($match);
$controller = $match[$configurationService->getControllerGetParameterName()];
$request->query->add($match);
$controller = UtilityService::prepareClassNameFromUrl($controller);
$controller = self::checkAccessAndGetControllerInstance(
$controller,
$configurationService
);
$response = $controller->handleCmd($request);
} catch(NoConfigurationException|ResourceNotFoundException $e) {
// Fallback to legacy Routing
$controller = $request->get($configurationService->getControllerGetParameterName());
if ($controller == "") {
throw new \Exception("No route found");
}
$controller = UtilityService::prepareClassNameFromUrl($controller);
$controller = self::checkAccessAndGetControllerInstance(
$controller,
$configurationService
);
$response = $controller->handleCmd();
}
return $this->handleControllerResponse($response, $request, $controller);
} catch(\Throwable $e) {
Arguments
Symfony\Component\HttpFoundation\Request {#542
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#545}
+request: Symfony\Component\HttpFoundation\InputBag {#543}
+query: Symfony\Component\HttpFoundation\InputBag {#544}
+server: Symfony\Component\HttpFoundation\ServerBag {#548}
+files: Symfony\Component\HttpFoundation\FileBag {#547}
+cookies: Symfony\Component\HttpFoundation\InputBag {#546}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#549}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: null
#pathInfo: "//kursangebot/kurs/45.html"
#requestUri: "//kursangebot/kurs/45.html"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
-isSafeContentPreferred: null
-isIisRewrite: false
basePath: ""
format: "html"
}
/srv/www/bgphoenics2.invorbereitung.de/ilias/index.php
use SeminarCatalog\Rest\Utility\ControllerResultInterface;
use Symfony\Component\HttpFoundation\Request;
require_once __DIR__ . '/classes/SeminarCatalogKernel.php';
error_reporting(error_reporting() & ~E_NOTICE);
ini_set('display_errors', 1);
apcu_clear_cache();
$whoops = new \Whoops\Run;
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
$whoops->register();
define("standalone2",true);
define("DEVMODE",true);
$kernel = new \SeminarCatalogKernel();
$kernel->boot();
$response = $kernel->handleRequest(ObjectManager::get(Request::class));
if ($response instanceof \Symfony\Component\HttpFoundation\Response || $response instanceof ControllerResultInterface) {
$response->send();
} else {
if (is_string($response)) {
echo $response;
} else {
throw new \Exception('Invalid response type given. Only Response|String is valid.');
}
}
// http://localhost:32768/?scontroller=SeminarCatalog__Core__Catalog__Controller__CatalogController&saction=catalog
Arguments
Symfony\Component\HttpFoundation\Request {#542
+attributes: Symfony\Component\HttpFoundation\ParameterBag {#545}
+request: Symfony\Component\HttpFoundation\InputBag {#543}
+query: Symfony\Component\HttpFoundation\InputBag {#544}
+server: Symfony\Component\HttpFoundation\ServerBag {#548}
+files: Symfony\Component\HttpFoundation\FileBag {#547}
+cookies: Symfony\Component\HttpFoundation\InputBag {#546}
+headers: Symfony\Component\HttpFoundation\HeaderBag {#549}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: null
#pathInfo: "//kursangebot/kurs/45.html"
#requestUri: "//kursangebot/kurs/45.html"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: null
#locale: null
#defaultLocale: "en"
-preferredFormat: null
-isHostValid: true
-isForwardedValid: true
-isSafeContentPreferred: null
-isIisRewrite: false
basePath: ""
format: "html"
}