Cakephp 4 – Display the loaded plugin list in the ui

by | Jun 24, 2022 | IT Tips | 0 comments

Handy snippet to include your loaded plugin list in a view

1
2
3
4
5
6
// templates/Pages/help.php
 
<tr>
    <th>Loaded Plugins</th>
    <td> <?= Text::toList(Plugin::loaded()) ?></td>
</tr>

Walah!

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.