Change project name to filetools

This commit is contained in:
2026-01-05 10:37:51 +01:00
parent a3558c470e
commit fe8d0bbffb
15 changed files with 77 additions and 74 deletions

View File

@@ -1,6 +1,6 @@
<?php
namespace dokuwiki\plugin\filelistplus;
namespace dokuwiki\plugin\filetools;
class Output
{
@@ -28,7 +28,7 @@ class Output
public function renderAsList($params)
{
if ($this->renderer instanceof \Doku_Renderer_xhtml) {
$this->renderer->doc .= '<div class="filelistplus-plugin">';
$this->renderer->doc .= '<div class="filetools-plugin">';
}
$this->renderListItems($this->files, $params);
@@ -46,7 +46,7 @@ class Output
public function renderAsTable($params)
{
if ($this->renderer instanceof \Doku_Renderer_xhtml) {
$this->renderer->doc .= '<div class="filelistplus-plugin">';
$this->renderer->doc .= '<div class="filetools-plugin">';
}
$items = $this->flattenResultTree($this->files);
@@ -277,7 +277,7 @@ class Output
protected function getLang($key)
{
$syntax = plugin_load('syntax', 'filelistplus');
$syntax = plugin_load('syntax', 'filetools');
return $syntax->getLang($key);
}
}