Cakephp 4 – Display the loaded plugin list in the ui

Written by James McDonald

June 24, 2022

Handy snippet to include your loaded plugin list in a view

// 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.

You May Also Like…