File: /var/www/vhosts/creativefellows.nl/test.creativefellows.nl/ergatis/pages/page.clientinformatie.php
<?php
/*
* Qutes page
*/
require_once ROOT_DIR . 'pages/sections/section.qoutes.php';
/*
* Breadcrumbs
*/
require_once ROOT_DIR . 'pages/sections/section.breadcrumbs.php';
/*
* Contents
*/
$html = '<div class="col24 slider-groups sub-grid">';
$html .= $e[0]->content;
$categories = $cassette->getCategories($section);
$html .= '<div class="col24">';
foreach($categories as $cat)
{
$html .= '<h2>'. $cat["naam"] .'</h2>';
$html .= '<div class="groups">';
foreach($cassette->entriesInCategory($cat["category_id"]) as $info_item)
{
$html .= '<div class="group">';
$html .= '<h3 class="group-header">' . $info_item->titel . '</h3>';
$html .= '<div class="hidden-content inited" style="display: none;">';
$html .= $info_item->tekst;
$html .= '</div>';
$html .= '</div>';
}
$html .= '</div>';
}
$html .= '</div>';
$html .= '</div>';
/*
* Output HTML
*/
echo $cassette->wrapAsSection($html);
/*
* Two column details + vervolgacties
*/
require_once ROOT_DIR . "pages/sections/section.related_info.php";
?>