HEX
Server: Apache
System: Linux v38079.2is.nl 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: democfellows (10015)
PHP: 8.1.34
Disabled: opcache_get_status
Upload Files
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";
		
		
		
?>