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

@@ -1,16 +1,16 @@
<?php
use dokuwiki\Extension\SyntaxPlugin;
use dokuwiki\plugin\filetools\Crawler;
use dokuwiki\plugin\filetools\Output;
use dokuwiki\plugin\filetools\Path;
use dokuwiki\plugin\luxtools\Crawler;
use dokuwiki\plugin\luxtools\Output;
use dokuwiki\plugin\luxtools\Path;
/**
* File Tools Plugin: Image gallery syntax.
* LuxTools Plugin: Image gallery syntax.
*
* Renders a thumbnail gallery of images matching a glob pattern.
*/
class syntax_plugin_filetools_images extends SyntaxPlugin
class syntax_plugin_luxtools_images extends SyntaxPlugin
{
/** @inheritdoc */
public function getType()
@@ -33,7 +33,7 @@ class syntax_plugin_filetools_images extends SyntaxPlugin
/** @inheritdoc */
public function connectTo($mode)
{
$this->Lexer->addSpecialPattern('\{\{images>.+?\}\}', $mode, 'plugin_filetools_images');
$this->Lexer->addSpecialPattern('\{\{images>.+?\}\}', $mode, 'plugin_luxtools_images');
}
/** @inheritdoc */