1
0
Fork 0
mirror of https://github.com/gtbu/Typesetter-5.3-p8.git synced 2025-03-13 03:23:14 +01:00
Typesetter-Original-gtbu/addons/Example/Gadget.php
2021-10-24 19:18:48 +02:00

16 lines
271 B
PHP

<?php
namespace Addon\Example;
defined('is_running') or die('Not an entry point...');
class Gadget{
public function __construct(){
echo '<h2>Gadget Example</h2>';
echo '<div>';
echo 'This is content that can be included in your theme.';
echo '</div>';
}
}