Hiding all items of an itemlist and select it with an select box

Permalink Browser Info Environment
Dear all,

I try to hide alle items of an repeatable list and select one with a select box (included in the list).
This should help to choose a linktype (external, internal, email or file).

To hide the items is no problem
To show the items when the select change to.

How can I hide all items of the list (while loading the page) instead of the select and show only the in the select choosen item?

E.g. I edit a form. In this form I have two links. One for email and one for internal page.
At the moment it looks like "attachment1.png" after loading. But it should look like "attachment2.png" after loading.

Are you please able to help

Best Regards

Gunter

2 Attachments

Type: Discussion
Status: Resolved
GunterSchmitt
View Replies:
ramonleenders replied on at Permalink Reply
ramonleenders
Gunter,

Not sure what you are trying to achieve here. Do you want to show/hide fields, based on the selection of a field ('choose link' in this example)? So you want to use some Javascripting I assume?

Kind regards,

Ramon
GunterSchmitt replied on at Permalink Reply 1 Attachment
GunterSchmitt
Dear Ramon,

thanks for your reply.

I have a repeatable item (see atachment) with a field to select (Row:#3) what should be shown, a field for a internal link (Row:#4), a field for an external link (Row:#2), a field for a file link (Row:#5) and a field for a email (Row:#6).

I want only to show one o this fields (choosen by the "select" field). This works if I add a new item with the following code:

$(document).on('change', 'select.linkChanger', function(){
      var linkPanel = $(this).closest('.panel-body');
      linkPanel.children("div.linkExternal").hide();
      linkPanel.children("div.linkInternal").hide();
      linkPanel.children("div.linkEmail").hide();
      linkPanel.children("div.linkFile").hide();
      if ($(this).val() == 'external'){
         linkPanel.children("div.linkExternal").show();
      } else if ($(this).val() == 'internal') {
         linkPanel.children("div.linkInternal").show();
      } else if ($(this).val() == 'email') {
         linkPanel.children("div.linkEmail").show();
      } else if ($(this).val() == 'file') {
         linkPanel.children("div.linkFile").show();
      }


With this code I search the clicked panel and hide all child items after this I show the selected item.

My problem is this dosen't work if the for will be open for editing again. All childes are hide because there is no change event after creating the select.

How can I handle this?

Regards

Gunter
ramonleenders replied on at Permalink Reply
ramonleenders
Gunter,

Put this in form.php (at the bottom of the file for example):

<script type="text/javascript">Concrete.event.publish('btLinkChanger.edit.open');</script>


Create a file called auto.js (if it doesn't exist yet). Paste this in:

Concrete.event.bind('btLinkChanger.edit.open', function () {
    $(document).on('change', 'select.linkChanger', function () {
        var linkPanel = $(this).closest('.panel-body');
        linkPanel.children("div.linkExternal").hide();
        linkPanel.children("div.linkInternal").hide();
        linkPanel.children("div.linkEmail").hide();
        linkPanel.children("div.linkFile").hide();
        if ($(this).val() == 'external') {
            linkPanel.children("div.linkExternal").show();
        } else if ($(this).val() == 'internal') {
            linkPanel.children("div.linkInternal").show();
        } else if ($(this).val() == 'email') {
            linkPanel.children("div.linkEmail").show();
        } else if ($(this).val() == 'file') {
            linkPanel.children("div.linkFile").show();


Haven't tested the code, so fingers crossed this works! :D

Kind regards,

Ramon
GunterSchmitt replied on at Permalink Reply
GunterSchmitt
Dear Ramon,

sorry, this dosen't work.

I think, I need the time point when the document is loaded. On this point I can manipulate all items.

How can I get this point?

I tried
$(document).ready(function (){ 
   alert("Will not be displayed");
   ... 
});

but this do also not work.

Thanks in advanced

Gunter
ramonleenders replied on at Permalink Reply
ramonleenders
If you send me the block type folder, I can take a look.

Kind regards,

Ramon
GunterSchmitt replied on at Permalink Reply 1 Attachment
GunterSchmitt
Dear Ramon,

thank you or your offer.

I attached the block.

The block was created by BlockDesigner Pro. I only added some classes in the form.php and this code in the auto.js

$(document).on('change', 'select.linkChanger', function(){
           var linkPanel = $(this).closest('.sortable-item');
            linkPanel.find(".linkElement").hide();
            if ($(this).val() == 'external'){
               linkPanel.find(".linkExternal").show();
            } else if ($(this).val() == 'internal') {
               linkPanel.find(".linkInternal").show();
            } else if ($(this).val() == 'email') {
               linkPanel.find(".linkEmail").show();
            } else if ($(this).val() == 'file') {
               linkPanel.find(".linkFile").show();
            }
         });


Thanks in advance

Gunter
ramonleenders replied on at Permalink Reply 1 Attachment
ramonleenders
Gunther,

Try this one (see attachment). Only edited auto.js and form.js.

Kind regards,

Ramon
GunterSchmitt replied on at Permalink Reply 2 Attachments
GunterSchmitt
Dear Ramon,

It works partially.

If you add one item - All is fine
If you add two or more items - All items shows the same linktype independ of the selection (see attachment "two-links.png").
If you add an other items - All items show the same linktype. Independ of the selection (see attachment "three-links.png").

Best Regards

Gunter
ramonleenders replied on at Permalink Reply 1 Attachment
ramonleenders
Gunther,

That makes sense! This one works, 100% haha. Only attached auto.js, as this is the only file that changed.

Kind regards,

Ramon
GunterSchmitt replied on at Permalink Reply
GunterSchmitt
Dear Ramon,

thank you, it works very well.

Best Regards

Gunter
ramonleenders replied on at Permalink Reply
ramonleenders
Gunter,

Glad it does! :)

If you haven't written a review yet for Block Designer Pro (and Block Designer), please do so. That helps other users and me and in the end you as well, because the bigger the crowd, the more features you get!

Kind regards,

Ramon

concrete5 Environment Information

# concrete5 Version
Core Version - 5.7.5.3
Version Installed - 5.7.5.3
Database Version - 20150731000000

# concrete5 Packages
Block Designer (1.3.7), Block Designer Pro (1.1.6), Event Calendar (3.3.4.1).

# concrete5 Overrides
blocks/page_title/templates/orange/view.php, blocks/page_title/templates/orange, blocks/page_title/templates/weiß/view.php, blocks/page_title/templates/weiß, blocks/page_title/templates/lila/view.php, blocks/page_title/templates/lila, blocks/page_title/templates/flummi-title.php, blocks/page_title/templates/darkturquoise/view.php, blocks/page_title/templates/darkturquoise, blocks/page_title/templates/gelb/view.php, blocks/page_title/templates/gelb, blocks/page_title/templates/magenta/view.php, blocks/page_title/templates/magenta, blocks/page_title/templates/grün/view.php, blocks/page_title/templates/grün, blocks/page_title/templates, blocks/page_title, blocks/sg_headline/thumbnail.png, blocks/sg_headline/icon.png, blocks/sg_headline/db.xml, blocks/sg_headline/view.php, blocks/sg_headline/form.php, blocks/sg_headline/edit.php, blocks/sg_headline/controller.php, blocks/sg_headline/config.json, blocks/sg_headline/templates/orange/thumbnail.png, blocks/sg_headline/templates/orange/view.php, blocks/sg_headline/templates/orange, blocks/sg_headline/templates/weiß/thumbnail.png, blocks/sg_headline/templates/weiß/view.php, blocks/sg_headline/templates/weiß, blocks/sg_headline/templates/lila/thumbnail.png, blocks/sg_headline/templates/lila/view.php, blocks/sg_headline/templates/lila, blocks/sg_headline/templates/darkturquoise/thumbnail.png, blocks/sg_headline/templates/darkturquoise/view.php, blocks/sg_headline/templates/darkturquoise, blocks/sg_headline/templates/gelb/thumbnail.png, blocks/sg_headline/templates/gelb/view.php, blocks/sg_headline/templates/gelb, blocks/sg_headline/templates/magenta/thumbnail.png, blocks/sg_headline/templates/magenta/view.php, blocks/sg_headline/templates/magenta, blocks/sg_headline/templates/grün/thumbnail.png, blocks/sg_headline/templates/grün/view.php, blocks/sg_headline/templates/grün, blocks/sg_headline/templates, blocks/sg_headline/add.php, blocks/sg_headline, blocks/editortest/icon.png, blocks/editortest/db.xml, blocks/editortest/view.php, blocks/editortest/form.php, blocks/editortest/edit.php, blocks/editortest/controller.php, blocks/editortest/config.json, blocks/editortest/add.php, blocks/editortest/composer.php, blocks/editortest, blocks/sg_abstract/thumbnail.png, blocks/sg_abstract/icon.png, blocks/sg_abstract/view.css, blocks/sg_abstract/db.xml, blocks/sg_abstract/view.php, blocks/sg_abstract/form.php, blocks/sg_abstract/edit.php, blocks/sg_abstract/form_test.php, blocks/sg_abstract/controller.php, blocks/sg_abstract/images/tv.png, blocks/sg_abstract/images, blocks/sg_abstract/config.json, blocks/sg_abstract/templates/grün/thumbnail.png, blocks/sg_abstract/templates/grün/view.php, blocks/sg_abstract/templates/grün, blocks/sg_abstract/templates/orange/thumbnail.png, blocks/sg_abstract/templates/orange/view.css, blocks/sg_abstract/templates/orange/view.php, blocks/sg_abstract/templates/orange, blocks/sg_abstract/templates/weiß/thumbnail.png, blocks/sg_abstract/templates/weiß/view.css, blocks/sg_abstract/templates/weiß/view.php, blocks/sg_abstract/templates/weiß, blocks/sg_abstract/templates/lila/thumbnail.png, blocks/sg_abstract/templates/lila/view.css, blocks/sg_abstract/templates/lila/view.php, blocks/sg_abstract/templates/lila, blocks/sg_abstract/templates/darkturquoise/thumbnail.png, blocks/sg_abstract/templates/darkturquoise/view.css, blocks/sg_abstract/templates/darkturquoise/view.php, blocks/sg_abstract/templates/darkturquoise, blocks/sg_abstract/templates/gelb/thumbnail.png, blocks/sg_abstract/templates/gelb/view.css, blocks/sg_abstract/templates/gelb/view.php, blocks/sg_abstract/templates/gelb, blocks/sg_abstract/templates/magenta/thumbnail.png, blocks/sg_abstract/templates/magenta/view.css, blocks/sg_abstract/templates/magenta/view.php, blocks/sg_abstract/templates/magenta, blocks/sg_abstract/templates/grün/thumbnail.png, blocks/sg_abstract/templates/grün/view.css, blocks/sg_abstract/templates/grün/view.php, blocks/sg_abstract/templates/grün, blocks/sg_abstract/templates, blocks/sg_abstract/add.php, blocks/sg_abstract, blocks/link/icon.png, blocks/link/db.xml, blocks/link/view.php, blocks/link/form.php, blocks/link/edit.php, blocks/link/auto.js, blocks/link/controller.php, blocks/link/config.json, blocks/link/templates/slider/view.js, blocks/link/templates/slider/view.css, blocks/link/templates/slider/view.php, blocks/link/templates/slider, blocks/link/templates, blocks/link/add.php, blocks/link/composer.php, blocks/link, blocks/sg_linklist/css_form/repeatable-ft.form.css, blocks/sg_linklist/css_form, blocks/sg_linklist/icon.png, blocks/sg_linklist/db.xml, blocks/sg_linklist/js_form/html.sortable.min.js, blocks/sg_linklist/js_form/handlebars-helpers.js, blocks/sg_linklist/js_form/handlebars-v4.0.2.js, blocks/sg_linklist/js_form, blocks/sg_linklist/view.php, blocks/sg_linklist/form.php, blocks/sg_linklist/edit.php, blocks/sg_linklist/auto.js, blocks/sg_linklist/controller.php, blocks/sg_linklist/config.json, blocks/sg_linklist/add.php, blocks/sg_linklist/composer.php, blocks/sg_linklist, blocks/sg_template/thumbnail.png, blocks/sg_template/icon.png, blocks/sg_template/db.xml, blocks/sg_template/view.php, blocks/sg_template/form.php, blocks/sg_template/edit.php, blocks/sg_template/controller.php, blocks/sg_template/config.json, blocks/sg_template/templates, blocks/sg_template/add.php, blocks/sg_template, blocks/sg_article/thumbnail.png, blocks/sg_article/icon.png, blocks/sg_article/db.xml, blocks/sg_article/view.php, blocks/sg_article/form.php, blocks/sg_article/edit.php, blocks/sg_article/controller.php, blocks/sg_article/config.json, blocks/sg_article/templates/orange/thumbnail.png, blocks/sg_article/templates/orange/view.php, blocks/sg_article/templates/orange, blocks/sg_article/templates/weiß/thumbnail.png, blocks/sg_article/templates/weiß/view.php, blocks/sg_article/templates/weiß, blocks/sg_article/templates/lila/thumbnail.png, blocks/sg_article/templates/lila/view.php, blocks/sg_article/templates/lila, blocks/sg_article/templates/darkturquoise/thumbnail.png, blocks/sg_article/templates/darkturquoise/view.php, blocks/sg_article/templates/darkturquoise, blocks/sg_article/templates/gelb/thumbnail.png, blocks/sg_article/templates/gelb/view.php, blocks/sg_article/templates/gelb, blocks/sg_article/templates/magenta/thumbnail.png, blocks/sg_article/templates/magenta/view.php, blocks/sg_article/templates/magenta, blocks/sg_article/templates/grün/thumbnail.png, blocks/sg_article/templates/grün/view.php, blocks/sg_article/templates/grün, blocks/sg_article/templates, blocks/sg_article/add.php, blocks/sg_article, blocks/linklist/css_form/repeatable-ft.form.css, blocks/linklist/css_form, blocks/linklist/icon.png, blocks/linklist/db.xml, blocks/linklist/js_form/html.sortable.min.js, blocks/linklist/js_form/handlebars-helpers.js, blocks/linklist/js_form/handlebars-v4.0.2.js, blocks/linklist/js_form, blocks/linklist/view.php, blocks/linklist/form.php, blocks/linklist/edit.php, blocks/linklist/auto.js, blocks/linklist/controller.php, blocks/linklist/config.json, blocks/linklist/add.php, blocks/linklist/composer.php, blocks/linklist, blocks/sg_event/thumbnail.png, blocks/sg_event/icon.png, blocks/sg_event/db.xml, blocks/sg_event/view.php, blocks/sg_event/form.php, blocks/sg_event/edit.php, blocks/sg_event/controller.php, blocks/sg_event/config.json, blocks/sg_event/templates/orange/thumbnail.png, blocks/sg_event/templates/orange/view.php, blocks/sg_event/templates/orange, blocks/sg_event/templates/weiß/thumbnail.png, blocks/sg_event/templates/weiß/view.php, blocks/sg_event/templates/weiß, blocks/sg_event/templates/lila/thumbnail.png, blocks/sg_event/templates/lila/view.php, blocks/sg_event/templates/lila, blocks/sg_event/templates/darkturquoise/thumbnail.png, blocks/sg_event/templates/darkturquoise/view.php, blocks/sg_event/templates/darkturquoise, blocks/sg_event/templates/gelb/thumbnail.png, blocks/sg_event/templates/gelb/view.php, blocks/sg_event/templates/gelb, blocks/sg_event/templates/magenta/thumbnail.png, blocks/sg_event/templates/magenta/view.php, blocks/sg_event/templates/magenta, blocks/sg_event/templates/grün/thumbnail.png, blocks/sg_event/templates/grün/view.php, blocks/sg_event/templates/grün, blocks/sg_event/templates, blocks/sg_event/add.php, blocks/sg_event, blocks/url/icon.png, blocks/url/db.xml, blocks/url/view.php, blocks/url/form.php, blocks/url/edit.php, blocks/url/controller.php, blocks/url/config.json, blocks/url/add.php, blocks/url/composer.php, blocks/url, blocks/textfeld/icon.png, blocks/textfeld/db.xml, blocks/textfeld/view.php, blocks/textfeld/form.php, blocks/textfeld/edit.php, blocks/textfeld/controller.php, blocks/textfeld/config.json, blocks/textfeld/templates/slider/view.js, blocks/textfeld/templates/slider/view.css, blocks/textfeld/templates/slider/view.php, blocks/textfeld/templates/slider, blocks/textfeld/templates, blocks/textfeld/add.php, blocks/textfeld/composer.php, blocks/textfeld, blocks/sg_youtube/thumbnail.png, blocks/sg_youtube/icon.png, blocks/sg_youtube/view.css, blocks/sg_youtube/db.xml, blocks/sg_youtube/view.php, blocks/sg_youtube/form.php, blocks/sg_youtube/edit.php, blocks/sg_youtube/controller.php, blocks/sg_youtube/images/tv.png, blocks/sg_youtube/images, blocks/sg_youtube/config.json, blocks/sg_youtube/templates/orange/thumbnail.png, blocks/sg_youtube/templates/orange/view.css, blocks/sg_youtube/templates/orange/view.php, blocks/sg_youtube/templates/orange, blocks/sg_youtube/templates/weiß/thumbnail.png, blocks/sg_youtube/templates/weiß/view.css, blocks/sg_youtube/templates/weiß/view.php, blocks/sg_youtube/templates/weiß, blocks/sg_youtube/templates/lila/thumbnail.png, blocks/sg_youtube/templates/lila/view.css, blocks/sg_youtube/templates/lila/view.php, blocks/sg_youtube/templates/lila, blocks/sg_youtube/templates/darkturquoise/thumbnail.png, blocks/sg_youtube/templates/darkturquoise/view.css, blocks/sg_youtube/templates/darkturquoise/view.php, blocks/sg_youtube/templates/darkturquoise, blocks/sg_youtube/templates/gelb/thumbnail.png, blocks/sg_youtube/templates/gelb/view.css, blocks/sg_youtube/templates/gelb/view.php, blocks/sg_youtube/templates/gelb, blocks/sg_youtube/templates/magenta/thumbnail.png, blocks/sg_youtube/templates/magenta/view.css, blocks/sg_youtube/templates/magenta/view.php, blocks/sg_youtube/templates/magenta, blocks/sg_youtube/templates/grün/thumbnail.png, blocks/sg_youtube/templates/grün/view.css, blocks/sg_youtube/templates/grün/view.php, blocks/sg_youtube/templates/grün, blocks/sg_youtube/templates, blocks/sg_youtube/add.php, blocks/sg_youtube, languages/fi_FI/LC_MESSAGES/messages.mo, languages/fi_FI/LC_MESSAGES, languages/fi_FI, languages/sv_SE/LC_MESSAGES/messages.mo, languages/sv_SE/LC_MESSAGES, languages/sv_SE, languages/nl_NL/LC_MESSAGES/messages.mo, languages/nl_NL/LC_MESSAGES, languages/nl_NL, languages/da_DK/LC_MESSAGES/messages.mo, languages/da_DK/LC_MESSAGES, languages/da_DK, languages/ja_JP/LC_MESSAGES/messages.mo, languages/ja_JP/LC_MESSAGES, languages/ja_JP, languages/pt_BR/LC_MESSAGES/messages.mo, languages/pt_BR/LC_MESSAGES, languages/pt_BR, languages/nb_NO/LC_MESSAGES/messages.mo, languages/nb_NO/LC_MESSAGES, languages/nb_NO, languages/tr_TR/LC_MESSAGES/messages.mo, languages/tr_TR/LC_MESSAGES, languages/tr_TR, languages/ru_RU/LC_MESSAGES/messages.mo, languages/ru_RU/LC_MESSAGES, languages/ru_RU, languages/el_GR/LC_MESSAGES/messages.mo, languages/el_GR/LC_MESSAGES, languages/el_GR, languages/de_DE/LC_MESSAGES/messages.mo, languages/de_DE/LC_MESSAGES, languages/de_DE, languages/pl_PL/LC_MESSAGES/messages.mo, languages/pl_PL/LC_MESSAGES, languages/pl_PL, languages/fr_FR/LC_MESSAGES/messages.mo, languages/fr_FR/LC_MESSAGES, languages/fr_FR, languages/it_IT/LC_MESSAGES/messages.mo, languages/it_IT/LC_MESSAGES, languages/it_IT, blocks/page_title/templates/orange/view.php, blocks/page_title/templates/orange, blocks/page_title/templates/weiß/view.php, blocks/page_title/templates/weiß, blocks/page_title/templates/lila/view.php, blocks/page_title/templates/lila, blocks/page_title/templates/flummi-title.php, blocks/page_title/templates/darkturquoise/view.php, blocks/page_title/templates/darkturquoise, blocks/page_title/templates/gelb/view.php, blocks/page_title/templates/gelb, blocks/page_title/templates/magenta/view.php, blocks/page_title/templates/magenta, blocks/page_title/templates/grün/view.php, blocks/page_title/templates/grün, blocks/page_title/templates, blocks/page_title, blocks/sg_headline/thumbnail.png, blocks/sg_headline/icon.png, blocks/sg_headline/db.xml, blocks/sg_headline/view.php, blocks/sg_headline/form.php, blocks/sg_headline/edit.php, blocks/sg_headline/controller.php, blocks/sg_headline/config.json, blocks/sg_headline/templates/orange/thumbnail.png, blocks/sg_headline/templates/orange/view.php, blocks/sg_headline/templates/orange, blocks/sg_headline/templates/weiß/thumbnail.png, blocks/sg_headline/templates/weiß/view.php, blocks/sg_headline/templates/weiß, blocks/sg_headline/templates/lila/thumbnail.png, blocks/sg_headline/templates/lila/view.php, blocks/sg_headline/templates/lila, blocks/sg_headline/templates/darkturquoise/thumbnail.png, blocks/sg_headline/templates/darkturquoise/view.php, blocks/sg_headline/templates/darkturquoise, blocks/sg_headline/templates/gelb/thumbnail.png, blocks/sg_headline/templates/gelb/view.php, blocks/sg_headline/templates/gelb, blocks/sg_headline/templates/magenta/thumbnail.png, blocks/sg_headline/templates/magenta/view.php, blocks/sg_headline/templates/magenta, blocks/sg_headline/templates/grün/thumbnail.png, blocks/sg_headline/templates/grün/view.php, blocks/sg_headline/templates/grün, blocks/sg_headline/templates, blocks/sg_headline/add.php, blocks/sg_headline, blocks/editortest/icon.png, blocks/editortest/db.xml, blocks/editortest/view.php, blocks/editortest/form.php, blocks/editortest/edit.php, blocks/editortest/controller.php, blocks/editortest/config.json, blocks/editortest/add.php, blocks/editortest/composer.php, blocks/editortest, blocks/sg_abstract/thumbnail.png, blocks/sg_abstract/icon.png, blocks/sg_abstract/view.css, blocks/sg_abstract/db.xml, blocks/sg_abstract/view.php, blocks/sg_abstract/form.php, blocks/sg_abstract/edit.php, blocks/sg_abstract/form_test.php, blocks/sg_abstract/controller.php, blocks/sg_abstract/images/tv.png, blocks/sg_abstract/images, blocks/sg_abstract/config.json, blocks/sg_abstract/templates/grün/thumbnail.png, blocks/sg_abstract/templates/grün/view.php, blocks/sg_abstract/templates/grün, blocks/sg_abstract/templates/orange/thumbnail.png, blocks/sg_abstract/templates/orange/view.css, blocks/sg_abstract/templates/orange/view.php, blocks/sg_abstract/templates/orange, blocks/sg_abstract/templates/weiß/thumbnail.png, blocks/sg_abstract/templates/weiß/view.css, blocks/sg_abstract/templates/weiß/view.php, blocks/sg_abstract/templates/weiß, blocks/sg_abstract/templates/lila/thumbnail.png, blocks/sg_abstract/templates/lila/view.css, blocks/sg_abstract/templates/lila/view.php, blocks/sg_abstract/templates/lila, blocks/sg_abstract/templates/darkturquoise/thumbnail.png, blocks/sg_abstract/templates/darkturquoise/view.css, blocks/sg_abstract/templates/darkturquoise/view.php, blocks/sg_abstract/templates/darkturquoise, blocks/sg_abstract/templates/gelb/thumbnail.png, blocks/sg_abstract/templates/gelb/view.css, blocks/sg_abstract/templates/gelb/view.php, blocks/sg_abstract/templates/gelb, blocks/sg_abstract/templates/magenta/thumbnail.png, blocks/sg_abstract/templates/magenta/view.css, blocks/sg_abstract/templates/magenta/view.php, blocks/sg_abstract/templates/magenta, blocks/sg_abstract/templates/grün/thumbnail.png, blocks/sg_abstract/templates/grün/view.css, blocks/sg_abstract/templates/grün/view.php, blocks/sg_abstract/templates/grün, blocks/sg_abstract/templates, blocks/sg_abstract/add.php, blocks/sg_abstract, blocks/link/icon.png, blocks/link/db.xml, blocks/link/view.php, blocks/link/form.php, blocks/link/edit.php, blocks/link/auto.js, blocks/link/controller.php, blocks/link/config.json, blocks/link/templates/slider/view.js, blocks/link/templates/slider/view.css, blocks/link/templates/slider/view.php, blocks/link/templates/slider, blocks/link/templates, blocks/link/add.php, blocks/link/composer.php, blocks/link, blocks/sg_linklist/css_form/repeatable-ft.form.css, blocks/sg_linklist/css_form, blocks/sg_linklist/icon.png, blocks/sg_linklist/db.xml, blocks/sg_linklist/js_form/html.sortable.min.js, blocks/sg_linklist/js_form/handlebars-helpers.js, blocks/sg_linklist/js_form/handlebars-v4.0.2.js, blocks/sg_linklist/js_form, blocks/sg_linklist/view.php, blocks/sg_linklist/form.php, blocks/sg_linklist/edit.php, blocks/sg_linklist/auto.js, blocks/sg_linklist/controller.php, blocks/sg_linklist/config.json, blocks/sg_linklist/add.php, blocks/sg_linklist/composer.php, blocks/sg_linklist, blocks/sg_template/thumbnail.png, blocks/sg_template/icon.png, blocks/sg_template/db.xml, blocks/sg_template/view.php, blocks/sg_template/form.php, blocks/sg_template/edit.php, blocks/sg_template/controller.php, blocks/sg_template/config.json, blocks/sg_template/templates, blocks/sg_template/add.php, blocks/sg_template, blocks/sg_article/thumbnail.png, blocks/sg_article/icon.png, blocks/sg_article/db.xml, blocks/sg_article/view.php, blocks/sg_article/form.php, blocks/sg_article/edit.php, blocks/sg_article/controller.php, blocks/sg_article/config.json, blocks/sg_article/templates/orange/thumbnail.png, blocks/sg_article/templates/orange/view.php, blocks/sg_article/templates/orange, blocks/sg_article/templates/weiß/thumbnail.png, blocks/sg_article/templates/weiß/view.php, blocks/sg_article/templates/weiß, blocks/sg_article/templates/lila/thumbnail.png, blocks/sg_article/templates/lila/view.php, blocks/sg_article/templates/lila, blocks/sg_article/templates/darkturquoise/thumbnail.png, blocks/sg_article/templates/darkturquoise/view.php, blocks/sg_article/templates/darkturquoise, blocks/sg_article/templates/gelb/thumbnail.png, blocks/sg_article/templates/gelb/view.php, blocks/sg_article/templates/gelb, blocks/sg_article/templates/magenta/thumbnail.png, blocks/sg_article/templates/magenta/view.php, blocks/sg_article/templates/magenta, blocks/sg_article/templates/grün/thumbnail.png, blocks/sg_article/templates/grün/view.php, blocks/sg_article/templates/grün, blocks/sg_article/templates, blocks/sg_article/add.php, blocks/sg_article, blocks/linklist/css_form/repeatable-ft.form.css, blocks/linklist/css_form, blocks/linklist/icon.png, blocks/linklist/db.xml, blocks/linklist/js_form/html.sortable.min.js, blocks/linklist/js_form/handlebars-helpers.js, blocks/linklist/js_form/handlebars-v4.0.2.js, blocks/linklist/js_form, blocks/linklist/view.php, blocks/linklist/form.php, blocks/linklist/edit.php, blocks/linklist/auto.js, blocks/linklist/controller.php, blocks/linklist/config.json, blocks/linklist/add.php, blocks/linklist/composer.php, blocks/linklist, blocks/sg_event/thumbnail.png, blocks/sg_event/icon.png, blocks/sg_event/db.xml, blocks/sg_event/view.php, blocks/sg_event/form.php, blocks/sg_event/edit.php, blocks/sg_event/controller.php, blocks/sg_event/config.json, blocks/sg_event/templates/orange/thumbnail.png, blocks/sg_event/templates/orange/view.php, blocks/sg_event/templates/orange, blocks/sg_event/templates/weiß/thumbnail.png, blocks/sg_event/templates/weiß/view.php, blocks/sg_event/templates/weiß, blocks/sg_event/templates/lila/thumbnail.png, blocks/sg_event/templates/lila/view.php, blocks/sg_event/templates/lila, blocks/sg_event/templates/darkturquoise/thumbnail.png, blocks/sg_event/templates/darkturquoise/view.php, blocks/sg_event/templates/darkturquoise, blocks/sg_event/templates/gelb/thumbnail.png, blocks/sg_event/templates/gelb/view.php, blocks/sg_event/templates/gelb, blocks/sg_event/templates/magenta/thumbnail.png, blocks/sg_event/templates/magenta/view.php, blocks/sg_event/templates/magenta, blocks/sg_event/templates/grün/thumbnail.png, blocks/sg_event/templates/grün/view.php, blocks/sg_event/templates/grün, blocks/sg_event/templates, blocks/sg_event/add.php, blocks/sg_event, blocks/url/icon.png, blocks/url/db.xml, blocks/url/view.php, blocks/url/form.php, blocks/url/edit.php, blocks/url/controller.php, blocks/url/config.json, blocks/url/add.php, blocks/url/composer.php, blocks/url, blocks/textfeld/icon.png, blocks/textfeld/db.xml, blocks/textfeld/view.php, blocks/textfeld/form.php, blocks/textfeld/edit.php, blocks/textfeld/controller.php, blocks/textfeld/config.json, blocks/textfeld/templates/slider/view.js, blocks/textfeld/templates/slider/view.css, blocks/textfeld/templates/slider/view.php, blocks/textfeld/templates/slider, blocks/textfeld/templates, blocks/textfeld/add.php, blocks/textfeld/composer.php, blocks/textfeld, blocks/sg_youtube/thumbnail.png, blocks/sg_youtube/icon.png, blocks/sg_youtube/view.css, blocks/sg_youtube/db.xml, blocks/sg_youtube/view.php, blocks/sg_youtube/form.php, blocks/sg_youtube/edit.php, blocks/sg_youtube/controller.php, blocks/sg_youtube/images/tv.png, blocks/sg_youtube/images, blocks/sg_youtube/config.json, blocks/sg_youtube/templates/orange/thumbnail.png, blocks/sg_youtube/templates/orange/view.css, blocks/sg_youtube/templates/orange/view.php, blocks/sg_youtube/templates/orange, blocks/sg_youtube/templates/weiß/thumbnail.png, blocks/sg_youtube/templates/weiß/view.css, blocks/sg_youtube/templates/weiß/view.php, blocks/sg_youtube/templates/weiß, blocks/sg_youtube/templates/lila/thumbnail.png, blocks/sg_youtube/templates/lila/view.css, blocks/sg_youtube/templates/lila/view.php, blocks/sg_youtube/templates/lila, blocks/sg_youtube/templates/darkturquoise/thumbnail.png, blocks/sg_youtube/templates/darkturquoise/view.css, blocks/sg_youtube/templates/darkturquoise/view.php, blocks/sg_youtube/templates/darkturquoise, blocks/sg_youtube/templates/gelb/thumbnail.png, blocks/sg_youtube/templates/gelb/view.css, blocks/sg_youtube/templates/gelb/view.php, blocks/sg_youtube/templates/gelb, blocks/sg_youtube/templates/magenta/thumbnail.png, blocks/sg_youtube/templates/magenta/view.css, blocks/sg_youtube/templates/magenta/view.php, blocks/sg_youtube/templates/magenta, blocks/sg_youtube/templates/grün/thumbnail.png, blocks/sg_youtube/templates/grün/view.css, blocks/sg_youtube/templates/grün/view.php, blocks/sg_youtube/templates/grün, blocks/sg_youtube/templates, blocks/sg_youtube/add.php, blocks/sg_youtube, languages/fi_FI/LC_MESSAGES/messages.mo, languages/fi_FI/LC_MESSAGES, languages/fi_FI, languages/sv_SE/LC_MESSAGES/messages.mo, languages/sv_SE/LC_MESSAGES, languages/sv_SE, languages/nl_NL/LC_MESSAGES/messages.mo, languages/nl_NL/LC_MESSAGES, languages/nl_NL, languages/da_DK/LC_MESSAGES/messages.mo, languages/da_DK/LC_MESSAGES, languages/da_DK, languages/ja_JP/LC_MESSAGES/messages.mo, languages/ja_JP/LC_MESSAGES, languages/ja_JP, languages/pt_BR/LC_MESSAGES/messages.mo, languages/pt_BR/LC_MESSAGES, languages/pt_BR, languages/nb_NO/LC_MESSAGES/messages.mo, languages/nb_NO/LC_MESSAGES, languages/nb_NO, languages/tr_TR/LC_MESSAGES/messages.mo, languages/tr_TR/LC_MESSAGES, languages/tr_TR, languages/ru_RU/LC_MESSAGES/messages.mo, languages/ru_RU/LC_MESSAGES, languages/ru_RU, languages/el_GR/LC_MESSAGES/messages.mo, languages/el_GR/LC_MESSAGES, languages/el_GR, languages/de_DE/LC_MESSAGES/messages.mo, languages/de_DE/LC_MESSAGES, languages/de_DE, languages/pl_PL/LC_MESSAGES/messages.mo, languages/pl_PL/LC_MESSAGES, languages/pl_PL, languages/fr_FR/LC_MESSAGES/messages.mo, languages/fr_FR/LC_MESSAGES, languages/fr_FR, languages/it_IT/LC_MESSAGES/messages.mo, languages/it_IT/LC_MESSAGES, languages/it_IT

# concrete5 Cache Settings
Block Cache - Off
Overrides Cache - Off
Full Page Caching - Off
Full Page Cache Lifetime - Every 6 hours (default setting).

# Server Software
Apache/2.4.7 (Ubuntu)

# Server API
apache2handler

# PHP Version
5.5.9-1ubuntu4.14

# PHP Extensions
apache2handler, bcmath, bz2, calendar, Core, ctype, curl, date, dba, dom, ereg, exif, fileinfo, filter, ftp, gd, gettext, hash, iconv, json, libxml, mbstring, mhash, mysql, mysqli, openssl, pcre, PDO, pdo_mysql, Phar, posix, readline, Reflection, session, shmop, SimpleXML, soap, sockets, SPL, standard, sysvmsg, sysvsem, sysvshm, tokenizer, wddx, xml, xmlreader, xmlwriter, Zend OPcache, zip, zlib.

# PHP Settings
max_execution_time - 30
log_errors_max_len - 1024
max_file_uploads - 20
max_input_nesting_level - 64
max_input_time - 60
max_input_vars - 1000
memory_limit - 128M
post_max_size - 8M
sql.safe_mode - Off
upload_max_filesize - 2M
mysql.max_links - Unlimited
mysql.max_persistent - Unlimited
mysqli.max_links - Unlimited
mysqli.max_persistent - Unlimited
pcre.backtrack_limit - 1000000
pcre.recursion_limit - 100000
session.cache_limiter - <i>no value</i>
session.gc_maxlifetime - 1440
soap.wsdl_cache_limit - 5
opcache.max_accelerated_files - 2000
opcache.max_file_size - 0
opcache.max_wasted_percentage - 5

Browser User-Agent String

Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:43.0) Gecko/20100101 Firefox/43.0

Hide Post Content

This will replace the post content with the message: "Content has been removed by an Administrator"

Hide Content

Request Refund

You may not request a refund that is not currently owned by you.