popnoire/site/OFF_plugins/imagekit/widgets/imagekit/lib/widget.php
2026-02-12 15:22:46 +01:00

20 lines
347 B
PHP

<?php
namespace Kirby\Plugins\ImageKit\Widget;
class Widget {
public static function instance() {
static $instance;
return $instance ?: $instance = new static();
}
protected function __construct() {
$kirby = kirby();
// Register the Widget
$kirby->set('widget', 'imagekit', dirname(__DIR__));
}
}