Change project name to File List Plus

This commit is contained in:
2026-01-05 10:29:34 +01:00
parent 83e348f31e
commit a3558c470e
15 changed files with 78 additions and 78 deletions

View File

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