1
0
Fork 0
mirror of https://github.com/gtbu/Typesetter-5.3-p8.git synced 2025-03-16 20:53:14 +01:00
Typesetter-Original-gtbu/include/special/Contact.php
2021-09-08 19:52:21 +02:00

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{}
}