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.contact.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 sub-grid">';
		
			$html .= $e[0]->content;
			
			/*
			 * Downloads
			 */
			$html .= $cassette->getFilesAsList($e[0]->downloads,'<h3>Downloads</h3>',"downloads","col24");
			
		
			/*
			 * Vervolgacties
			 */
			require_once ROOT_DIR . 'pages/sections/section.vervolgacties.php';
			$html .= $acties;
			
			
			/*
			 * Contact form
			 */	
			if($e[0]->form_id)
			{
				$form_id 		= $e[0]->form_id;
				$hide_header 	= false;
				require 'sections/section.form.php';
		
				$html .= '<div class="col24">'. $return .'</div>';
				
			}
			
				
		$html .= '</div>';
		
		
		/*
		 * Output HTML
		 */
		echo $cassette->wrapAsSection($html);
		
		
	
		/*
		 * Two column details + vervolgacties
		 */
		require_once ROOT_DIR . "pages/sections/section.related_info.php";
		
		
		
?>