Add own admin page for the plugin
Some checks failed
DokuWiki Default Tasks / all (push) Has been cancelled

This commit is contained in:
2026-01-06 22:39:21 +01:00
parent f86dce6ec3
commit 6a396ce511
16 changed files with 269 additions and 50 deletions

View File

@@ -6,7 +6,7 @@ use dokuwiki\plugin\luxtools\Output;
use dokuwiki\plugin\luxtools\Path;
/**
* LuxTools Plugin: Abstract base class for file-listing syntax handlers.
* luxtools Plugin: Abstract base class for file-listing syntax handlers.
*
* Provides shared functionality for directory, files, and images syntax.
*/

View File

@@ -6,7 +6,7 @@ use dokuwiki\plugin\luxtools\Path;
require_once(__DIR__ . '/AbstractSyntax.php');
/**
* LuxTools Plugin: Directory syntax.
* luxtools Plugin: Directory syntax.
*
* Lists the direct children (folders and files) of a given path.
* Always renders as a table.

View File

@@ -5,7 +5,7 @@ use dokuwiki\plugin\luxtools\Output;
require_once(__DIR__ . '/AbstractSyntax.php');
/**
* LuxTools Plugin: Files syntax.
* luxtools Plugin: Files syntax.
*
* Lists files matching a given glob pattern.
*/

View File

@@ -5,7 +5,7 @@ use dokuwiki\plugin\luxtools\Output;
require_once(__DIR__ . '/AbstractSyntax.php');
/**
* LuxTools Plugin: Image gallery syntax.
* luxtools Plugin: Image gallery syntax.
*
* Renders a thumbnail gallery of images matching a glob pattern.
*/

View File

@@ -3,7 +3,7 @@
use dokuwiki\Extension\SyntaxPlugin;
/**
* LuxTools 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).