mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-11 01:44:02 +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{}
|
|
}
|