::Plugins::
Plugins in Felore-Lux is look like a simple class with public variabl output and __construct method.
<?php
class PluginName implements Plugins
{
/**
* @var output
*
* @info Ouput data
*
* @typeOf string;
*/
public $output = '';
public function __construct()
{
$this->output = "Hello";
}
}
?>