mirror of
				https://github.com/gtbu/Typesetter-5.3-p8.git
				synced 2025-11-04 06:48:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			374 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			374 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace gp\special{
 | 
						|
 | 
						|
	defined('is_running') or die('Not an entry point...');
 | 
						|
 | 
						|
	class Contact extends ContactGadget{
 | 
						|
 | 
						|
		public function ShowForm(){
 | 
						|
			echo \gp\tool\Output\Extra::GetExtra('Contact');
 | 
						|
			parent::ShowForm();
 | 
						|
		}
 | 
						|
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
namespace{
 | 
						|
	class special_contact extends \gp\special\Contact{}
 | 
						|
	class special_contact_gadget extends \gp\special\ContactGadget{}
 | 
						|
}
 |