A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: api/index.php

Line Number: 1024

A PHP Error was encountered

Severity: Notice

Message: Undefined variable: openingHours

Filename: api/index.php

Line Number: 1054

A PHP Error was encountered

Severity: Notice

Message: Undefined variable: openingHours

Filename: api/index.php

Line Number: 1054

A PHP Error was encountered

Severity: Notice

Message: Undefined variable: openingHours

Filename: api/index.php

Line Number: 1054

A PHP Error was encountered

Severity: Notice

Message: Undefined variable: openingHours

Filename: api/index.php

Line Number: 1054

A PHP Error was encountered

Severity: Notice

Message: Undefined variable: openingHours

Filename: api/index.php

Line Number: 1054

A PHP Error was encountered

Severity: Notice

Message: Undefined variable: openingHours

Filename: api/index.php

Line Number: 1054

A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /www/htdocs/w01aca4f/apotool.kiosk.vision/system/core/Exceptions.php:186)

Filename: api/index_view.php

Line Number: 2

jQuery(function($) { checkCookie(); function checkCookie() { var consent = getCookie("cookies_consent"); if (consent == null || consent == "" || consent == undefined) { // show notification bar $('#cookie_directive_container').show(); } } function setCookie(c_name,value,exdays) { var exdate = new Date(); exdate.setDate(exdate.getDate() + exdays); var c_value = escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString()); document.cookie = c_name + "=" + c_value+"; path=/"; $('#cookie_directive_container').fadeOut( "slow" ); } function getCookie(c_name) { var i,x,y,ARRcookies=document.cookie.split(";"); for (i=0;i-1}function j(w,v){w.className+=" "+v}function n(w,v){w.className=" "+w.className+" ";w.className=w.className.replace(" "+v+" ","")}function i(){var v=new Date();var w=v.getTime();return document.location.protocol+"//"+document.location.host+document.location.pathname+(window.location.search?window.location.search+"&":"?")+"rsTimestamp="+w+document.location.hash}r();return{toggle:q}})(); $(document).ready(function() { $('.f-container').append('
') $(".rs-link").bind("mousedown click", function() { if (window.screen.width >= 1180) { alert("Nur auf mobilen Geräten funktionsfähig."); return false; } }); if (window.screen.width >= 1180) { $(".rs-link").hide(); } }); /* ======================================================================== * Bootstrap: modal.js v3.2.0 * http://getbootstrap.com/javascript/#modals * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // MODAL CLASS DEFINITION // ====================== var Modal = function (element, options) { this.options = options this.$body = $(document.body) this.$element = $(element) this.$backdrop = this.isShown = null this.scrollbarWidth = 0 if (this.options.remote) { this.$element .find('.modal-content') .load(this.options.remote, $.proxy(function () { this.$element.trigger('loaded.bs.modal') }, this)) } } Modal.VERSION = '3.2.0' Modal.DEFAULTS = { backdrop: true, keyboard: true, show: true } Modal.prototype.toggle = function (_relatedTarget) { return this.isShown ? this.hide() : this.show(_relatedTarget) } Modal.prototype.show = function (_relatedTarget) { var that = this var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) this.$element.trigger(e) if (this.isShown || e.isDefaultPrevented()) return this.isShown = true this.checkScrollbar() this.$body.addClass('modal-open') this.setScrollbar() this.escape() this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) this.backdrop(function () { var transition = $.support.transition && that.$element.hasClass('fade') if (!that.$element.parent().length) { that.$element.appendTo(that.$body) // don't move modals dom position } that.$element .show() .scrollTop(0) if (transition) { that.$element[0].offsetWidth // force reflow } that.$element .addClass('in') .attr('aria-hidden', false) that.enforceFocus() var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) transition ? that.$element.find('.modal-dialog') // wait for modal to slide in .one('bsTransitionEnd', function () { that.$element.trigger('focus').trigger(e) }) .emulateTransitionEnd(300) : that.$element.trigger('focus').trigger(e) }) } Modal.prototype.hide = function (e) { if (e) e.preventDefault() e = $.Event('hide.bs.modal') this.$element.trigger(e) if (!this.isShown || e.isDefaultPrevented()) return this.isShown = false this.$body.removeClass('modal-open') this.resetScrollbar() this.escape() $(document).off('focusin.bs.modal') this.$element .removeClass('in') .attr('aria-hidden', true) .off('click.dismiss.bs.modal') $.support.transition && this.$element.hasClass('fade') ? this.$element .one('bsTransitionEnd', $.proxy(this.hideModal, this)) .emulateTransitionEnd(300) : this.hideModal() } Modal.prototype.enforceFocus = function () { $(document) .off('focusin.bs.modal') // guard against infinite focus loop .on('focusin.bs.modal', $.proxy(function (e) { if (this.$element[0] !== e.target && !this.$element.has(e.target).length) { this.$element.trigger('focus') } }, this)) } Modal.prototype.escape = function () { if (this.isShown && this.options.keyboard) { this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) { e.which == 27 && this.hide() }, this)) } else if (!this.isShown) { this.$element.off('keyup.dismiss.bs.modal') } } Modal.prototype.hideModal = function () { var that = this this.$element.hide() this.backdrop(function () { that.$element.trigger('hidden.bs.modal') }) } Modal.prototype.removeBackdrop = function () { this.$backdrop && this.$backdrop.remove() this.$backdrop = null } Modal.prototype.backdrop = function (callback) { var that = this var animate = this.$element.hasClass('fade') ? 'fade' : '' if (this.isShown && this.options.backdrop) { var doAnimate = $.support.transition && animate this.$backdrop = $('