Rename project to luxtools, remove client tool
Some checks failed
DokuWiki Default Tasks / all (push) Has been cancelled

This commit is contained in:
2026-01-05 16:51:42 +01:00
parent b64d4d91ff
commit e59970e0b8
15 changed files with 66 additions and 325 deletions

View File

@@ -3,12 +3,12 @@
use dokuwiki\Extension\SyntaxPlugin;
/**
* File Tools Plugin: Open local path syntax.
* LuxTools Plugin: Open local path syntax.
*
* Renders an inline button. Clicking it triggers client-side JS that attempts
* to open the configured path in the default file manager (best-effort).
*/
class syntax_plugin_filetools_open extends SyntaxPlugin
class syntax_plugin_luxtools_open extends SyntaxPlugin
{
/** @inheritdoc */
public function getType()
@@ -32,7 +32,7 @@ class syntax_plugin_filetools_open extends SyntaxPlugin
/** @inheritdoc */
public function connectTo($mode)
{
$this->Lexer->addSpecialPattern('\{\{open>.+?\}\}', $mode, 'plugin_filetools_open');
$this->Lexer->addSpecialPattern('\{\{open>.+?\}\}', $mode, 'plugin_luxtools_open');
}
/** @inheritdoc */