2021-09-08 19:52:21 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Addon\Example;
|
|
|
|
|
|
|
|
defined('is_running') or die('Not an entry point...');
|
|
|
|
|
|
|
|
class Gadget{
|
|
|
|
|
2021-10-24 19:18:48 +02:00
|
|
|
public function __construct(){
|
2021-09-08 19:52:21 +02:00
|
|
|
echo '<h2>Gadget Example</h2>';
|
|
|
|
echo '<div>';
|
|
|
|
echo 'This is content that can be included in your theme.';
|
|
|
|
echo '</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|