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/vanlierop/pages/page.faq.php
<?php
	
	$html = '<br />';

	
			
	/*
	 * page content
	 */
	$html .= '<div class="medium-12 large-12 columns">';

		$html .= '<h1>'.$e[0]->titel.'</h1>';
		$html .= $e[0]->tekst;
	
		$html .= '<hr />';		
		
		
		$categories = $cassette->getCategories($section);	
		
		//$html .= '<div class="div">';
		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 .= '<h4 class="group-header">' . $info_item->titel . '</h4>';
					$html .= '<div class="hidden-content inited" style="display: none;">';
						$html .= $info_item->tekst;
						
						$html .= '<p class="last">';
						foreach($info_item->links as $link)
						{
							$ed 	= $cassette->getEntries(null,null,$link[0]);
							$title	= $ed[0]->first_field;
							
							$html .= '<a href="'. $ed[0]->entry_link .'" class="button">'. $ed[0]->$title .'</a>';
						
						}
						$html .= '</p>';
						
					$html .= '</div>';
					
				$html .= '</div>';
			}
			$html .= '</div>';
				
		}
			
	$html .= '</div>';




	
	/*
	 * Output	
	 */
	echo$cassette->wrapAsSection($html,"","slider-groups","","data-sticky-container");
	
	
	/*
	 * Pagination
	 */			
//	if($section != "van-lierop") require_once ROOT_DIR . 'pages/sections/section.loopback.php';
	
?>