Error 500 Internal Server Error

GET http://iacp.cloud/

Exceptions

Variable "services" does not exist.

Exception

Twig\Error\ RuntimeError

Show exception properties
Twig\Error\RuntimeError {#2267
  -lineno: 144
  -name: "webpage/inc/therapist_search.html.twig"
  -rawMessage: "Variable "services" does not exist."
  -sourcePath: "/home/iacpclr/www/templates/webpage/inc/therapist_search.html.twig"
  -sourceCode: """
    <div class="container">\n
    \t<div class="search-container ">\n
     \n
    \t\t{% if extended %}\n
    \t\t\t<ul class="nav nav-tabs nav-tabs-fill justify-content-center mb-2" id="myTab" role="tablist">\n
    \t\t\t\t<li class="nav-item" role="presentation">\n
    \t\t\t\t\t<button class="nav-link {{ by=='issue' or by  ==''  ?'active':''}}" id="issue-tab" data-bs-toggle="tab" data-bs-target="#issue" type="button" role="tab" aria-controls="issue" aria-selected="true">By Issue</button>\n
    \t\t\t\t</li>\n
    \t\t\t\t<li class="nav-item" role="presentation">\n
    \t\t\t\t\t<button class="nav-link  {{ by=='name'?'active':''}}" id="name-tab" data-bs-toggle="tab" data-bs-target="#name" type="button" role="tab" aria-controls="name" aria-selected="false">By Name</button>\n
    \t\t\t\t</li>\n
    \t\t\t\t<li class="nav-item" role="presentation">\n
    \t\t\t\t\t<button class="nav-link  {{ by=='area'?'active':''}}" id="area-tab" data-bs-toggle="tab" data-bs-target="#area" type="button" role="tab" aria-controls="area" aria-selected="false">For Whom</button>\n
    \t\t\t\t</li>\n
    \t\t\t\t<li class="nav-item" role="presentation">\n
    \t\t\t\t\t<button class="nav-link  {{ by=='keyword'?'active':''}}" id="keyword-tab" data-bs-toggle="tab" data-bs-target="#keyword" type="button" role="tab" aria-controls="keyword" aria-selected="false">By Keyword</button>\n
    \t\t\t\t</li>\n
    \t\t\t</ul>\n
    \n
    \t\t{% endif %}\n
    \n
    \t\t<div class="tab-content" id="myTabContent">\n
    \t\t\t<div class="tab-pane fade  {{ by=='issue' or by  ==''?'show active':''}} " id="issue" role="tabpanel" aria-labelledby="issue-tab">\n
    \n
    \t\t\t\t<form action="{{ path('therapists_list') }}#issue" method="get" class="w-100">\n
    \t\t\t\t\t<input type="hidden" name="q" value="1"/>\n
    \t\t\t\t\t<input type="hidden" name="by" value="issue"/>\n
                        {% if supervisors==1 %}\n
                <input type="hidden" name="supervisors"  value="1" />\n
              {% endif %}  \n
    \t\t\t\t\t<div class="d-flex align-items-center mb-3">\n
    \n
    \t\t\t\t\t\t<div class="input-group rounded-pill border border-black" style="padding:10px">\n
    \t\t\t\t\t\t\t<div class="input-group-prepend w-75">\n
    \t\t\t\t\t\t\t\t<div class="dropdown">\n
    \t\t\t\t\t\t\t\t\t<button class="btn border-end border-0 border-black rounded-0 dropdown-toggle w-100 text-start issues-button" type="button" data-bs-toggle="dropdown">Search By Issue</button>\n
    \t\t\t\t\t\t\t\t\t<div class="dropdown-menu">\n
    \t\t\t\t\t\t\t\t\t\t{% set half = (issues|length / 2)|round(0, 'ceil') %}\n
    \t\t\t\t\t\t\t\t\t\t{% set left_column = issues|slice(0, half) %}\n
    \t\t\t\t\t\t\t\t\t\t{% set right_column = issues|slice(half) %}\n
    \t\t\t\t\t\t\t\t\t\t<div class="row" style="max-height:200px;overflow-y:scroll;">\n
    \t\t\t\t\t\t\t\t\t\t\t<div class="col-md-6 col-12">\n
    \t\t\t\t\t\t\t\t\t\t\t\t<ul class="  ps-2 col-md-6 d-flex row" style="overflow-x:hidden;width:400px;max-width:100%">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t{% for l in left_column  %}\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class="col-12" style="list-style:none">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class="form-check">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input class="form-check-input" type="checkbox" {{ selected_issues is defined and l.id in selected_issues ? 'checked' : '' }} value="{{l.id}}" name="i[]" id="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label class="form-check-label" for="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{{l.name}}\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</label>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t</li>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t{% endfor %}\n
    \t\t\t\t\t\t\t\t\t\t\t\t</ul>\n
    \t\t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t\t\t<div class="col-md-6 col-12">\n
    \t\t\t\t\t\t\t\t\t\t\t\t<ul class="  ps-2 " style=" overflow-x:hidden;width:400px;max-width:100%">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t{% for l in right_column  %}\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class="col-12" style="list-style:none">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class="form-check">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input class="form-check-input" type="checkbox" {{ selected_issues is defined and l.id in selected_issues ? 'checked' : '' }} value="{{l.id}}" name="i[]" id="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label class="form-check-label" for="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{{l.name}}\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</label>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t</li>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t{% endfor %}\n
    \t\t\t\t\t\t\t\t\t\t\t\t</ul>\n
    \t\t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t</div>\n
    \n
    \t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t<div class="input-group-prepend w-25 ">\n
    \n
    \t\t\t\t\t\t\t\t<div class="dropdown">\n
    \n
    \t\t\t\t\t\t\t\t\t<button class="btn  dropdown-toggle w-100 text-start location-button" type="button" data-bs-toggle="dropdown">Location</button>\n
    \t\t\t\t\t\t\t\t\t<div class="dropdown-menu">\n
    \t\t\t\t\t\t\t\t\t\t<ul class="ps-2 w-100 row d-flex" style="max-height:200px;overflow-y:scroll;overflow-x:hidden; width:400px;max-width:100%">\n
    \t\t\t\t\t\t\t\t\t\t\t{% for l in locations %}\n
    \t\t\t\t\t\t\t\t\t\t\t\t<li class=" col-md-6 col-12" style="list-style:none">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t<div class="form-check">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t<input class="form-check-input" type="checkbox" name="l[]" {{ selected_locations is defined and l.id in selected_locations ? 'checked' : '' }} value="{{l.id}}" id="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t<label class="form-check-label" for="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{{l.name}}\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t</label>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t\t\t\t</li>\n
    \t\t\t\t\t\t\t\t\t\t\t{% endfor %}\n
    \t\t\t\t\t\t\t\t\t\t</ul>\n
    \t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t</div>\n
    \n
    \t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t</div>\n
    \n
    \n
    \t\t\t\t\t\t<button type="submit" class="btn btn-primary w-25 rounded-pill ms-2">FIND</button>\n
    \t\t\t\t\t</div>\n
    \t\t\t\t</form>\n
    \n
    \n
    \t\t\t</div>\n
    \t\t\t<div class="tab-pane fade {{ by=='name'?'show active':''}}" id="name" role="tabpanel" aria-labelledby="name-tab">\n
    \t\t\t\n
          \t<form action="{{ path('therapists_list') }}#name" method="get" class="w-100">\n
    \t\t\t\t\t<input type="hidden" name="q" value="1"/>\n
    \t\t\t\t\t<input type="hidden" name="by" value="name"/>\n
              {% if supervisors==1 %}\n
                <input type="hidden" name="supervisors"  value="1" />\n
              {% endif %}  \n
    \t\t\t\t\t<div class="d-flex align-items-center mb-3">\n
    \t\t\t\t\t\t<div class="input-group rounded-pill border border-black" style="padding:10px">\n
    \t\t\t\t\t\t\t<div class="input-group-prepend w-50">\n
    \t\t\t\t\t\t\t\t<input class="form-control border-0 border-right-1 rounded-0" value="{{first_name}}" type="text" name="fn" placeholder="First Name"/>\n
    \t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t<div class="input-group-prepend w-50 ">\n
    \t\t\t\t\t\t\t\t<input class="form-control border-0 border-start border-black rounded-0" value="{{last_name}}" type="text" name="ln" placeholder="Last Name"/>\n
    \t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t<button type="submit" class="btn btn-primary w-25 rounded-pill ms-2">FIND</button>\n
    \t\t\t\t\t</div>\n
    \t\t\t\t</form>\n
    \n
    \n
    \t\t\t</div>\n
    \t\t\t<div class="tab-pane fade {{ by=='area'?'show active':''}}" id="area" role="tabpanel" aria-labelledby="area-tab">\n
    \n
    \t\t\t\t<form action="{{ path('therapists_list') }}#area" method="get" class="w-100">\n
    \t\t\t\t\t<input type="hidden" name="q" value="1"/>\n
    \t\t\t\t\t<input type="hidden" name="by" value="area"/>\n
                        {% if supervisors==1 %}\n
                <input type="hidden" name="supervisors"  value="1" />\n
              {% endif %}  \n
    \t\t\t\t\t<div class="d-flex align-items-center mb-3">\n
    \n
    \t\t\t\t\t\t<div class="input-group rounded-pill border border-black" style="padding:10px">\n
    \t\t\t\t\t\t\t<div class="input-group-prepend w-75">\n
    \t\t\t\t\t\t\t\t<div class="dropdown">\n
    \t\t\t\t\t\t\t\t\t<button class="btn border-end border-0 border-black rounded-0 dropdown-toggle w-100 text-start whom-button" type="button" data-bs-toggle="dropdown">Search By For Whom</button>\n
    \t\t\t\t\t\t\t\t\t<div class="dropdown-menu">\n
    \t\t\t\t\t\t\t\t\t\t{% set half = (services|length / 2)|round(0, 'ceil') %}\n
    \t\t\t\t\t\t\t\t\t\t{% set left_column = services|slice(0, half) %}\n
    \t\t\t\t\t\t\t\t\t\t{% set right_column = services|slice(half) %}\n
    \t\t\t\t\t\t\t\t\t\t<div class="row" style="max-height:200px;overflow-y:scroll;">\n
    \t\t\t\t\t\t\t\t\t\t\t<div class="col-md-6 col-12">\n
    \t\t\t\t\t\t\t\t\t\t\t\t<ul class="  ps-2 col-md-6 d-flex row" style="overflow-x:hidden;width:400px;max-width:100%">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t{% for l in left_column  %}\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class="col-12" style="list-style:none">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class="form-check">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input class="form-check-input" type="checkbox" {{ selected_services is defined and l.id in selected_services ? 'checked' : '' }} value="{{l.id}}" name="s[]" id="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label class="form-check-label" for="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{{l.name}}\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</label>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t</li>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t{% endfor %}\n
    \t\t\t\t\t\t\t\t\t\t\t\t</ul>\n
    \t\t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t\t\t<div class="col-md-6 col-12">\n
    \t\t\t\t\t\t\t\t\t\t\t\t<ul class="  ps-2 " style=" overflow-x:hidden;width:400px;max-width:100%">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t{% for l in right_column  %}\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class="col-12" style="list-style:none">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class="form-check">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input class="form-check-input" type="checkbox" {{ selected_services is defined and l.id in selected_services ? 'checked' : '' }} value="{{l.id}}" name="s[]" id="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label class="form-check-label" for="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{{l.name}}\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</label>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t</li>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t{% endfor %}\n
    \t\t\t\t\t\t\t\t\t\t\t\t</ul>\n
    \t\t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t</div>\n
    \n
    \t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t<div class="input-group-prepend w-25 ">\n
    \n
    \t\t\t\t\t\t\t\t<div class="dropdown">\n
    \n
    \t\t\t\t\t\t\t\t\t<button class="btn  dropdown-toggle w-100 text-start location-button" type="button" data-bs-toggle="dropdown">Location</button>\n
    \t\t\t\t\t\t\t\t\t<div class="dropdown-menu">\n
    \t\t\t\t\t\t\t\t\t\t<ul class="ps-2 w-100 row d-flex" style="max-height:200px;overflow-y:scroll;overflow-x:hidden; width:400px;max-width:100%">\n
    \t\t\t\t\t\t\t\t\t\t\t{% for l in locations %}\n
    \t\t\t\t\t\t\t\t\t\t\t\t<li class=" col-md-6 col-12" style="list-style:none">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t<div class="form-check">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t<input class="form-check-input" type="checkbox" name="l[]" {{ selected_locations is defined and l.id in selected_locations ? 'checked' : '' }} value="{{l.id}}" id="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t<label class="form-check-label" for="checkDefault{{l.id}}">\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{{l.name}}\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t\t</label>\n
    \t\t\t\t\t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t\t\t\t\t</li>\n
    \t\t\t\t\t\t\t\t\t\t\t{% endfor %}\n
    \t\t\t\t\t\t\t\t\t\t</ul>\n
    \t\t\t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t\t\t</div>\n
    \n
    \t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t<button type="submit" class="btn btn-primary w-25 rounded-pill ms-2">FIND</button>\n
    \t\t\t\t\t</div>\n
    \t\t\t\t</form>\n
    \n
    \n
    \t\t\t</div>\n
    \t\t\t<div class="tab-pane fade {{ by=='keyword'?'show active':''}}" id="keyword" role="tabpanel" aria-labelledby="keyword-tab">\n
                \t<form action="{{ path('therapists_list') }}#keyword" method="get" class="w-100">\n
    \t\t\t\t\t<input type="hidden" name="q" value="1"/>\n
    \t\t\t\t\t<input type="hidden" name="by" value="keyword"/>\n
                        {% if supervisors==1 %}\n
                <input type="hidden" name="supervisors"  value="1" />\n
              {% endif %}  \n
    \t\t\t\t\t<div class="d-flex align-items-center mb-3">\n
    \t\t\t\t\t\t<div class="input-group rounded-pill border border-black" style="padding:10px">\n
    \t\t\t\t\t\t\t<div class="input-group-prepend w-100">\n
    \t\t\t\t\t\t\t\t<input class="form-control border-0 border-right-1 rounded-0" value="{{keyword}}" type="text" name="k" placeholder="Keyword"/>\n
    \t\t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t \n
    \t\t\t\t\t\t</div>\n
    \t\t\t\t\t\t<button type="submit" class="btn btn-primary w-25 rounded-pill ms-2">FIND</button>\n
    \t\t\t\t\t</div>\n
    \t\t\t\t</form>\n
    \n
          \n
          </div>\n
    \t\t</div>\n
    \n
    \n
    \t\t{% if not extended %}\n
    \t\t\t<div class="text-center">\n
    \t\t\t\t<a href="{{ path('therapists_list') }}" class="btn-link small">Advanced Search</a>\n
    \t\t\t</div>\n
    \t\t{% endif %}\n
    \t</div>\n
    </div>\n
    \n
     <script>\n
      $(document).ready(function(){\n
     \n
        // Function to update dropdown labels based on selected checkboxes\n
        function updateDropdownLabels() {\n
          // Update Issues dropdown\n
          const selectedIssues = [];\n
          $('input[name="i[]"]:checked').each(function() {\n
            selectedIssues.push($(this).siblings('label').text().trim());\n
          });\n
       \n
    \n
          const issuesButton = $('.issues-button');\n
          if (selectedIssues.length == 1) {\n
            issuesButton.text(selectedIssues[0]);\n
            issuesButton.attr('title', selectedIssues.join(', '));\n
         } else if (selectedIssues.length > 1) {\n
            issuesButton.text(`Issues (${selectedIssues.length})`);\n
            issuesButton.attr('title', selectedIssues.join(', '));\n
          } else {\n
            issuesButton.text('Search By Issue');\n
            issuesButton.removeAttr('title');\n
          }\n
          \n
          $('.tab-pane').each(function(){\n
            const selectedLocations = [];\n
            $('input[name="l[]"]:checked',this).each(function() {\n
                selectedLocations.push($(this).siblings('label').text().trim());\n
            });\n
    \n
          const locationsButton = $('.location-button',this);\n
          if (selectedLocations.length == 1) {\n
            locationsButton.text(selectedLocations[0]);\n
          } else if (selectedLocations.length > 1) {\n
            locationsButton.text(`Locations (${selectedLocations.length})`);\n
            locationsButton.attr('title', selectedLocations.join(', '));\n
          } else {\n
            locationsButton.text('Location');\n
            locationsButton.removeAttr('title');\n
          }\n
    \n
          })\n
          // Update Location dropdown\n
          \n
          \n
    \n
          \n
          // Check if extended search is enabled\n
     \n
            // Update Services dropdown\n
            const selectedServices = [];\n
            $('input[name="s[]"]:checked').each(function() {\n
              selectedServices.push($(this).siblings('label').text().trim());\n
            });\n
            \n
            const servicesButton = $('.whom-button');\n
            if (selectedServices.length == 1) {\n
              servicesButton.text(selectedServices[0]);\n
            } else if (selectedServices.length > 1) {\n
              servicesButton.text(`For Whom (${selectedServices.length})`);\n
              servicesButton.attr('title', selectedServices.join(', '));\n
            } else {\n
              servicesButton.text('Search by For Whom');\n
              servicesButton.removeAttr('title');\n
            }\n
            \n
           \n
        }\n
        \n
        // Run on document ready to initialize labels\n
        updateDropdownLabels();\n
        \n
        // Listen for changes to any checkbox\n
        $('input[type="checkbox"]').change(function() {\n
          updateDropdownLabels();\n
        });\n
      });\n
    </script>\n
    """
}
  1.                         <div class="input-group rounded-pill border border-black" style="padding:10px">
  2.                             <div class="input-group-prepend w-75">
  3.                                 <div class="dropdown">
  4.                                     <button class="btn border-end border-0 border-black rounded-0 dropdown-toggle w-100 text-start whom-button" type="button" data-bs-toggle="dropdown">Search By For Whom</button>
  5.                                     <div class="dropdown-menu">
  6.                                         {% set half = (services|length / 2)|round(0, 'ceil') %}
  7.                                         {% set left_column = services|slice(0, half) %}
  8.                                         {% set right_column = services|slice(half) %}
  9.                                         <div class="row" style="max-height:200px;overflow-y:scroll;">
  10.                                             <div class="col-md-6 col-12">
  11.                                                 <ul class="  ps-2 col-md-6 d-flex row" style="overflow-x:hidden;width:400px;max-width:100%">
  1. \t\t\t\t\t\t\t\t<div class=\"dropdown\">
  2. \t\t\t\t\t\t\t\t\t<button class=\"btn border-end border-0 border-black rounded-0 dropdown-toggle w-100 text-start whom-button\" type=\"button\" data-bs-toggle=\"dropdown\">Search By For Whom</button>
  3. \t\t\t\t\t\t\t\t\t<div class=\"dropdown-menu\">
  4. \t\t\t\t\t\t\t\t\t\t";
  5.         // line 144
  6.         $context["half"] = Twig\Extension\CoreExtension::round((Twig\Extension\CoreExtension::length($this->env->getCharset(), (isset($context["services"]) || array_key_exists("services"$context) ? $context["services"] : (function () { throw new RuntimeError('Variable "services" does not exist.'144$this->source); })())) / 2), 0"ceil");
  7.         // line 145
  8.         yield "\t\t\t\t\t\t\t\t\t\t";
  9.         $context["left_column"] = Twig\Extension\CoreExtension::slice($this->env->getCharset(), (isset($context["services"]) || array_key_exists("services"$context) ? $context["services"] : (function () { throw new RuntimeError('Variable "services" does not exist.'145$this->source); })()), 0, (isset($context["half"]) || array_key_exists("half"$context) ? $context["half"] : (function () { throw new RuntimeError('Variable "half" does not exist.'145$this->source); })()));
  10.         // line 146
  11.         yield "\t\t\t\t\t\t\t\t\t\t";
in vendor/twig/twig/src/Template.php -> doDisplay (line 388)
  1.     {
  2.         $context += $this->env->getGlobals();
  3.         $blocks array_merge($this->blocks$blocks);
  4.         try {
  5.             yield from $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1. \t\t\t\t<a href=\"#\" class=\"btn-link\">accredited therapist</a>
  2. \t\t\t</h2>
  3. ";
  4.         // line 29
  5.         yield from $this->loadTemplate("webpage/inc/therapist_search.html.twig""webpage/index.html.twig"29)->unwrap()->yield(CoreExtension::merge($context, ["approaches" => [], "first_name" => """last_name" => """keyword" => """supervisors" => """by" => """extended" => false]));
  6.         // line 30
  7.         yield "\t\t\t
  8. \t\t</div>
  9. \t</section>
in vendor/twig/twig/src/Template.php -> block_body (line 432)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 yield from $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1. \t\t\t\t\t\t\t</div>
  2. \t\t\t\t\t\t</div>
  3. \t\t\t\t\t\t";
  4.         // line 228
  5.         yield from $this->unwrap()->yieldBlock('body'$context$blocks);
  6.         // line 229
  7.         yield "\t\t\t\t\t\t";
  8.         yield from $this->unwrap()->yieldBlock('scripts'$context$blocks);
  9.         // line 230
  10.         yield "
in vendor/twig/twig/src/Template.php -> doDisplay (line 388)
  1.     {
  2.         $context += $this->env->getGlobals();
  3.         $blocks array_merge($this->blocks$blocks);
  4.         try {
  5.             yield from $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""webpage/index.html.twig"));
  3.         $this->parent $this->loadTemplate("webpage/inc/layout.html.twig""webpage/index.html.twig"1);
  4.         yield from $this->parent->unwrap()->yield($contextarray_merge($this->blocks$blocks));
  5.         
  6.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  7.         
  8.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 388)
  1.     {
  2.         $context += $this->env->getGlobals();
  3.         $blocks array_merge($this->blocks$blocks);
  4.         try {
  5.             yield from $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = []): void
  4.     {
  5.         foreach ($this->yield($context$blocks) as $data) {
  6.             echo $data;
  7.         }
  8.     }
  9.     public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 359)
  1.                 ob_start();
  2.             } else {
  3.                 ob_start(function () { return ''; });
  4.             }
  5.             try {
  6.                 $this->display($context);
  7.             } catch (\Throwable $e) {
  8.                 while (ob_get_level() > $level) {
  9.                     ob_end_clean();
  10.                 }
  1.         yield from $this->template->yieldBlock($name$context);
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     /**
  8.      * @return void
  9.      */
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.         if (null !== $block) {
  2.             return $this->container->get('twig')->load($view)->renderBlock($block$parameters);
  3.         }
  4.         return $this->container->get('twig')->render($view$parameters);
  5.     }
  6.     private function doRender(string $view, ?string $block, array $parameters, ?Response $responsestring $method): Response
  7.     {
  8.         $content $this->doRenderView($view$block$parameters$method);
  1.         return $this->container->get('twig')->render($view$parameters);
  2.     }
  3.     private function doRender(string $view, ?string $block, array $parameters, ?Response $responsestring $method): Response
  4.     {
  5.         $content $this->doRenderView($view$block$parameters$method);
  6.         $response ??= new Response();
  7.         if (200 === $response->getStatusCode()) {
  8.             foreach ($parameters as $v) {
  9.                 if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
  1.      * If an invalid form is found in the list of parameters, a 422 status code is returned.
  2.      * Forms found in parameters are auto-cast to form views.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         return $this->doRender($viewnull$parameters$response__FUNCTION__);
  7.     }
  8.     /**
  9.      * Renders a block in a view.
  10.      *
AbstractController->render('webpage/index.html.twig', array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP'), null) in src/Utils/CmsAdminBaseController.php (line 521)
  1.     return $aConfig;
  2.   }
  3.   public function render(string $view, array $parameters = [], Response $response null): Response
  4.   {
  5.     return parent::render($view$this->add_layout_vars($parameters), $response);
  6.   }
  7. }
CmsAdminBaseController->render('webpage/index.html.twig', array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)))) in src/Controller/DefaultController.php (line 98)
  1.          $locations $this->getDoctrine()->getRepository(Dictionary::class)
  2.           ->findBy(['visible' => true'typeKey' => 'therapist_location'], ['listOrder'=>'ASC']);
  3.   $issues $this->getDoctrine()->getRepository(Dictionary::class)
  4.           ->findBy(['visible' => true'typeKey' => 'therapist_category'], ['listOrder'=>'ASC']);
  5.       $r $this->render('webpage/index.html.twig', [
  6.         'comments' => [],
  7.         'body_class' => 'home',
  8.         'events' => $events,
  9.         'news'=>$news,
  10.         'locations' => $locations,
in vendor/symfony/cache/LockRegistry.php -> App\Controller\{closure} (line 111)
  1.                 if ($locked || !$wouldBlock) {
  2.                     $logger?->info(sprintf('Lock %s, now computing item "{key}"'$locked 'acquired' 'not supported'), ['key' => $item->getKey()]);
  3.                     self::$lockedFiles[$key] = true;
  4.                     $value $callback($item$save);
  5.                     if ($save) {
  6.                         if ($setMetadata) {
  7.                             $setMetadata($item);
  8.                         }
  1.             if (!isset($this->callbackWrapper)) {
  2.                 $this->setCallbackWrapper($this->setCallbackWrapper(null));
  3.             }
  4.             try {
  5.                 $value = ($this->callbackWrapper)($callback$item$save$pool, function (CacheItem $item) use ($setMetadata$startTime, &$metadata) {
  6.                     $setMetadata($item$startTime$metadata);
  7.                 }, $this->logger ?? null);
  8.                 $setMetadata($item$startTime$metadata);
  9.                 return $value;
in vendor/symfony/cache-contracts/CacheTrait.php -> Symfony\Component\Cache\Traits\{closure} (line 64)
  1.             }
  2.         }
  3.         if ($recompute) {
  4.             $save true;
  5.             $item->set($callback($item$save));
  6.             if ($save) {
  7.                 $pool->save($item);
  8.             }
  9.         }
  1.             CacheItem::class
  2.         );
  3.         $this->callbackWrapper ??= LockRegistry::compute(...);
  4.         return $this->contractsGet($pool$key, function (CacheItem $itembool &$save) use ($pool$callback$setMetadata, &$metadata$key) {
  5.             // don't wrap nor save recursive calls
  6.             if (isset($this->computing[$key])) {
  7.                 $value $callback($item$save);
  8.                 $save false;
  1.  */
  2. trait CacheTrait
  3. {
  4.     public function get(string $key, callable $callback, ?float $beta null, ?array &$metadata null): mixed
  5.     {
  6.         return $this->doGet($this$key$callback$beta$metadata);
  7.     }
  8.     public function delete(string $key): bool
  9.     {
  10.         return $this->deleteItem($key);
TagAwareAdapter->get('web_cache.homepage', object(Closure)) in src/Controller/DefaultController.php (line 67)
  1.   #[Route("/"name"homepage")]
  2.   #[Route("/"name"homepage_path")]
  3.   public function index(Request $request): Response
  4.   {
  5.     $r $this->getCache()->get('web_cache.homepage', function ($item) {
  6.       $events $this->getDoctrine()->getRepository(Event::class)
  7.         ->createQueryBuilder('e')
  8.         ->select('e')
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 30)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/iacpclr/www/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
DEBUG 12:30:16 php Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/iacpclr/www/vendor/symfony/error-handler/DebugClassLoader.php",
        "line": 294,
        "trace": [
            {
                "file": "/home/iacpclr/www/vendor/doctrine/doctrine-bundle/src/DoctrineBundle.php",
                "line": 124,
                "function": "loadClass",
                "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader",
                "type": "->"
            }
        ],
        "count": 8
    }
}
INFO 12:30:16 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "7c7897"
    },
    "request_uri": "https://iacp.cloud/_profiler/7c7897?panel=exception&type=request",
    "method": "GET"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
INFO 12:30:16 deprecation User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 12:30:16 deprecation User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 12:30:16 deprecation User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement.
{
    "exception": {}
}
INFO 12:30:16 deprecation User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement.
{
    "exception": {}
}
DEBUG 12:30:16 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 12:30:16 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
INFO 12:30:16 deprecation User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AttributeDriver.php:77 called by App_KernelDevDebugContainer.php:1562, https://github.com/doctrine/orm/pull/10455, package doctrine/orm)
{
    "exception": {}
}
INFO 12:30:16 deprecation User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:166 called by EntityManager.php:177, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm)
{
    "exception": {}
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "ContainerKiLjvOI\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerKiLjvOI\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 12:30:16 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "ContainerKiLjvOI\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerKiLjvOI\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 12:30:16 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 12:30:16 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 12:30:16 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 12:30:16 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 12:30:16 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "ContainerKiLjvOI\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerKiLjvOI\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 12:30:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 12:30:16 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 12:30:16 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 12:30:16 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 12:30:16 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 12:30:16 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 12:30:16 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 12:30:16 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 12:30:16 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "ContainerKiLjvOI\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerKiLjvOI\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 12:30:16 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

RuntimeError
Twig\Error\RuntimeError:
Variable "services" does not exist.

  at templates/webpage/inc/therapist_search.html.twig:144
  at __TwigTemplate_c943a540ab72be22ec27046e7181897d->{closure}()
     (var/cache/dev/twig/ab/abafc2aa45bb76f42520aab2b7dc05ad.php:328)
  at __TwigTemplate_c943a540ab72be22ec27046e7181897d->doDisplay(array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP', 'app' => object(AppVariable), 'approaches' => array(), 'first_name' => '', 'last_name' => '', 'keyword' => '', 'supervisors' => '', 'by' => '', 'extended' => false, 'half' => 25.0, 'left_column' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'right_column' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary))), array())
     (vendor/twig/twig/src/Template.php:388)
  at Twig\Template->yield(array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP', 'app' => object(AppVariable), 'approaches' => array(), 'first_name' => '', 'last_name' => '', 'keyword' => '', 'supervisors' => '', 'by' => '', 'extended' => false))
     (var/cache/dev/twig/c9/c9ae3fbd47552684404f49548cdc73b7.php:109)
  at __TwigTemplate_e0d38bfa069ca364c9500e851c4abe3b->block_body(array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP', 'app' => object(AppVariable)), array('stylesheets' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_stylesheets'), 'main_menu' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_main_menu'), 'menu_ul' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_menu_ul'), 'login_search' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_login_search'), 'body' => array(object(__TwigTemplate_e0d38bfa069ca364c9500e851c4abe3b), 'block_body'), 'scripts' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_scripts')))
     (vendor/twig/twig/src/Template.php:432)
  at Twig\Template->yieldBlock('body', array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP', 'app' => object(AppVariable)), array('stylesheets' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_stylesheets'), 'main_menu' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_main_menu'), 'menu_ul' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_menu_ul'), 'login_search' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_login_search'), 'body' => array(object(__TwigTemplate_e0d38bfa069ca364c9500e851c4abe3b), 'block_body'), 'scripts' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_scripts')))
     (var/cache/dev/twig/76/7631e71a4c5ece6f42f9c762987bcfcd.php:354)
  at __TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2->doDisplay(array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP', 'app' => object(AppVariable)), array('stylesheets' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_stylesheets'), 'main_menu' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_main_menu'), 'menu_ul' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_menu_ul'), 'login_search' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_login_search'), 'body' => array(object(__TwigTemplate_e0d38bfa069ca364c9500e851c4abe3b), 'block_body'), 'scripts' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_scripts')))
     (vendor/twig/twig/src/Template.php:388)
  at Twig\Template->yield(array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP', 'app' => object(AppVariable)), array('stylesheets' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_stylesheets'), 'main_menu' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_main_menu'), 'menu_ul' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_menu_ul'), 'login_search' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_login_search'), 'body' => array(object(__TwigTemplate_e0d38bfa069ca364c9500e851c4abe3b), 'block_body'), 'scripts' => array(object(__TwigTemplate_c4f0623a2c3bcb8851e21cb02188f0a2), 'block_scripts')))
     (var/cache/dev/twig/c9/c9ae3fbd47552684404f49548cdc73b7.php:53)
  at __TwigTemplate_e0d38bfa069ca364c9500e851c4abe3b->doDisplay(array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP', 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_e0d38bfa069ca364c9500e851c4abe3b), 'block_body')))
     (vendor/twig/twig/src/Template.php:388)
  at Twig\Template->yield(array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP', 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_e0d38bfa069ca364c9500e851c4abe3b), 'block_body')))
     (vendor/twig/twig/src/Template.php:344)
  at Twig\Template->display(array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP'))
     (vendor/twig/twig/src/Template.php:359)
  at Twig\Template->render(array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP'))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP'))
     (vendor/twig/twig/src/Environment.php:334)
  at Twig\Environment->render('webpage/index.html.twig', array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP'))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:448)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('webpage/index.html.twig', null, array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP'), 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:453)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('webpage/index.html.twig', null, array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP'), null, 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:253)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('webpage/index.html.twig', array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'url' => object(UrlHelper), 'use_cookies' => false, 'show_cookie_dialog' => true, 'settings' => object(Settings), 'page_path' => '', 'add_label' => '', 'canonical' => 'https://iacp.cloud', 'admin_menu_open' => '', 'admin_breadcrumb' => array(), 'add_action' => '', 'back_path' => '', 'menu_settings' => array(array('title' => 'META tags', 'in_menu' => 'content', 'path' => 'meta-tags'), array('title' => 'Events list page', 'in_menu' => 'events', 'path' => 'events-list-page'), array('title' => 'Footer content', 'in_menu' => 'content', 'path' => 'footer-content'), array('title' => 'Homepage panels', 'in_menu' => 'content', 'path' => 'homepage-panels'), array('title' => 'Email Templates', 'in_menu' => 'content', 'path' => 'email-templates'), array('title' => 'Payment settings', 'in_menu' => 'database', 'path' => 'payment-settings'), array('title' => 'Homepage slider', 'in_menu' => 'content', 'path' => 'homepage-slider'), array('title' => 'News settings', 'in_menu' => 'content', 'path' => 'news-settings'), array('title' => 'Garda Vetting Settings', 'in_menu' => 'applications', 'path' => 'garda-vetting-settings'), array('title' => 'AGM Forms settings', 'in_menu' => 'members', 'path' => 'agm-forms-settings'), array('title' => 'Events settings', 'in_menu' => 'events', 'path' => 'events-settings')), 'menu_dictionaries' => array(array('title' => 'Events (previous)', 'path' => 'events', 'in_menu' => 'content', 'order' => 'event_date,desc', 'add_columns' => array('event_date|Event date'), 'form_config' => array(array('field_label' => 'Event image', 'field_tag' => 'event_image', 'field_type' => 'file', 'field_options' => null), array('field_label' => 'Image ALT', 'field_tag' => 'event_image_alt', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event date', 'field_tag' => 'event_date', 'field_type' => 'date', 'field_options' => null), array('field_label' => 'Event description', 'field_tag' => 'event_description', 'field_type' => 'tinymce', 'field_options' => null), array('field_label' => 'Event tag', 'field_tag' => 'event_tag', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description dates', 'field_tag' => 'event_dates', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description venue', 'field_tag' => 'event_venue', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description address', 'field_tag' => 'event_address', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Description registration link', 'field_tag' => 'event_registration_link', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'CPD Points', 'field_tag' => 'cpd_points', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Lecturer', 'field_tag' => 'lecturer', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Event type', 'field_tag' => 'event_type', 'field_type' => 'select', 'field_options' => 'FREE,PAID')), 'field_map' => array('event_image' => 'file1', 'event_image_alt' => 'field1', 'event_date' => 'field2', 'event_description' => 'field3', 'event_tag' => 'field4', 'event_dates' => 'field5', 'event_venue' => 'field6', 'event_address' => 'field7', 'event_registration_link' => 'field8', 'cpd_points' => 'field9', 'lecturer' => 'field10', 'event_type' => 'field11'), 'visible_label' => ''), array('title' => 'Membership types', 'path' => 'membership_type', 'in_menu' => 'database', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Annual price', 'field_tag' => 'annual_price', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('annual_price' => 'field1'), 'visible_label' => ''), array('title' => 'Locations', 'path' => 'therapist_location', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Approaches', 'path' => 'therapist_approach', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Categories', 'path' => 'therapist_category', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Services', 'path' => 'therapist_whom', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'Languages', 'path' => 'therapist_language', 'in_menu' => 'members', 'order' => '', 'add_columns' => array(), 'form_config' => array(), 'field_map' => array(), 'visible_label' => ''), array('title' => 'IACP Accredited Courses', 'path' => 'accredited_courses', 'in_menu' => 'applications', 'order' => '', 'add_columns' => array(), 'form_config' => array(array('field_label' => 'Institution', 'field_tag' => 'institution', 'field_type' => 'text', 'field_options' => null), array('field_label' => 'Address', 'field_tag' => 'address', 'field_type' => 'text', 'field_options' => null)), 'field_map' => array('institution' => 'field1', 'address' => 'field2'), 'visible_label' => '')), 'cms_dictionaries_parsed' => array('', 'therapist_approach' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_category' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_language' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'therapist_committee' => array(object(Dictionary), object(Dictionary)), 'therapist_whom' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'events' => array(object(Dictionary), object(Dictionary)), 'therapist_location' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'accredited_courses' => array(object(Dictionary), object(Dictionary))), 'menu_pages_settings' => array('news' => array('title' => 'News:content', 'path' => 'news', 'options_ary' => array('news', '0', '', '', 'top', '1', '', '')), 'old_content' => array('title' => 'Old Content:content', 'path' => 'old_content', 'options_ary' => array('old_content', '1', '', '', '', '', '', '', '')), 'member_pages' => array('title' => 'Member pages:content', 'path' => 'member_pages', 'options_ary' => array('member_pages', '1', '', '', '', '', '', '', ''))), 'cms_slides' => array('home' => array(), 'logos' => array()), 'cms_pages' => array('member_pages' => array(object(Page)), 'news' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'main' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'old_content' => array(object(Page)), 'events' => array(), 'home' => array(), 'quick_links' => array(), 'information' => array(), 'footer' => array()), 'all_cms_pages' => array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), 'sub_pages' => array(array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page), object(Page)), array(object(Page), object(Page), object(Page), object(Page), object(Page), object(Page), object(Page)), array(object(Page)), array(object(Page), object(Page))), 'application_forms' => array(object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm), object(MembershipForm)), 'page_title' => 'IACP'), null)
     (src/Utils/CmsAdminBaseController.php:521)
  at App\Utils\CmsAdminBaseController->render('webpage/index.html.twig', array('comments' => array(), 'body_class' => 'home', 'events' => array(object(Event), object(Event), object(Event)), 'news' => array(object(Page), object(Page), object(Page), object(Page)), 'locations' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary)), 'issues' => array(object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary), object(Dictionary))))
     (src/Controller/DefaultController.php:98)
  at App\Controller\DefaultController->App\Controller\{closure}(object(CacheItem), true)
     (vendor/symfony/cache/LockRegistry.php:111)
  at Symfony\Component\Cache\LockRegistry::compute(object(Closure), object(CacheItem), true, object(TagAwareAdapter), object(Closure), null)
     (vendor/symfony/cache/Traits/ContractsTrait.php:102)
  at Symfony\Component\Cache\Adapter\TagAwareAdapter->Symfony\Component\Cache\Traits\{closure}(object(CacheItem), true)
     (vendor/symfony/cache-contracts/CacheTrait.php:64)
  at Symfony\Component\Cache\Adapter\TagAwareAdapter->contractsGet(object(TagAwareAdapter), 'web_cache.homepage', object(Closure), 1.0, array(), null)
     (vendor/symfony/cache/Traits/ContractsTrait.php:85)
  at Symfony\Component\Cache\Adapter\TagAwareAdapter->doGet(object(TagAwareAdapter), 'web_cache.homepage', object(Closure), 1.0, array())
     (vendor/symfony/cache-contracts/CacheTrait.php:30)
  at Symfony\Component\Cache\Adapter\TagAwareAdapter->get('web_cache.homepage', object(Closure))
     (src/Controller/DefaultController.php:67)
  at App\Controller\DefaultController->index(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:181)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:30)
  at require_once('/home/iacpclr/www/vendor/autoload_runtime.php')
     (public/index.php:5)