Files
luxtools-plugin/syntax.php
luxick 681eadaed0
Some checks failed
DokuWiki Default Tasks / all (push) Has been cancelled
Refactor old naming
2026-01-06 14:44:51 +01:00

33 lines
829 B
PHP

<?php
require_once(__DIR__ . '/syntax/AbstractSyntax.php');
require_once(__DIR__ . '/syntax/files.php');
/**
* LuxTools plugin bootstrap.
*
* The actual {{files>...}} syntax implementation lives in syntax/files.php.
*/
class syntax_plugin_luxtools extends syntax_plugin_luxtools_files
{
/** @inheritdoc */
public function connectTo($mode)
{
// Intentionally empty: syntax is registered by syntax_plugin_luxtools_files.
}
}
/**
* Compatibility alias for older codebases that referenced the legacy FileTools class name.
*
* Note: plugin id/base is now `luxtools`.
*/
class syntax_plugin_filetools extends syntax_plugin_luxtools_files
{
/** @inheritdoc */
public function connectTo($mode)
{
// Intentionally empty: syntax is registered by syntax_plugin_luxtools_files.
}
}