HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ubuntu-8gb-hel1-1 6.8.0-55-generic #57-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 12 23:42:21 UTC 2025 x86_64
User: www-data (33)
PHP: 8.1.32
Disabled: NONE
Upload Files
File: /var/www/agighana.org_backup/provider_layouts_view.class.php
<?php

defined('UNLIMITED_ELEMENTS_INC') or die;

class UniteCreatorLayoutsViewProvider extends UniteCreatorLayoutsView{

	/**
	 * display blocking text
	 */
	private function displayNotAvailableText(){
		?>
		<h2>
		<br>
		<br>
		The layouts list displayed via WP special links, if you entered this page, something must be wrong. 
		<br>
		<br>
		Please turn to developers in order to fix.
		
		</h2>
		<?php 
		
	}
	
	
	/**
	 * block display
	 */
	public function display(){
		
		if($this->objLayoutType->displayType != UniteCreatorAddonType_Layout::DISPLAYTYPE_MANAGER)
			$this->displayNotAvailableText();	
		else
			parent::display();
		
	}
		
}