diff options
Diffstat (limited to 'application/front/controller/admin/ToolsController.php')
-rw-r--r-- | application/front/controller/admin/ToolsController.php | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/application/front/controller/admin/ToolsController.php b/application/front/controller/admin/ToolsController.php index a476e898..a87f20d2 100644 --- a/application/front/controller/admin/ToolsController.php +++ b/application/front/controller/admin/ToolsController.php | |||
@@ -22,7 +22,7 @@ class ToolsController extends ShaarliAdminController | |||
22 | 'sslenabled' => is_https($this->container->environment), | 22 | 'sslenabled' => is_https($this->container->environment), |
23 | ]; | 23 | ]; |
24 | 24 | ||
25 | $data = $this->executeHooks($data); | 25 | $this->executePageHooks('render_tools', $data, TemplatePage::TOOLS); |
26 | 26 | ||
27 | foreach ($data as $key => $value) { | 27 | foreach ($data as $key => $value) { |
28 | $this->assignView($key, $value); | 28 | $this->assignView($key, $value); |
@@ -32,19 +32,4 @@ class ToolsController extends ShaarliAdminController | |||
32 | 32 | ||
33 | return $response->write($this->render(TemplatePage::TOOLS)); | 33 | return $response->write($this->render(TemplatePage::TOOLS)); |
34 | } | 34 | } |
35 | |||
36 | /** | ||
37 | * @param mixed[] $data Variables passed to the template engine | ||
38 | * | ||
39 | * @return mixed[] Template data after active plugins render_picwall hook execution. | ||
40 | */ | ||
41 | protected function executeHooks(array $data): array | ||
42 | { | ||
43 | $this->container->pluginManager->executeHooks( | ||
44 | 'render_tools', | ||
45 | $data | ||
46 | ); | ||
47 | |||
48 | return $data; | ||
49 | } | ||
50 | } | 35 | } |