Change project name to filetools
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user