mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-11 01:44:02 +01:00
17 lines
264 B
PHP
17 lines
264 B
PHP
|
<?php
|
||
|
|
||
|
namespace Addon\Example;
|
||
|
|
||
|
defined('is_running') or die('Not an entry point...');
|
||
|
|
||
|
class Gadget{
|
||
|
|
||
|
function __construct(){
|
||
|
echo '<h2>Gadget Example</h2>';
|
||
|
echo '<div>';
|
||
|
echo 'This is content that can be included in your theme.';
|
||
|
echo '</div>';
|
||
|
}
|
||
|
|
||
|
}
|