To add the Plugins menu to the Admin Panel, follow these steps:
File Location: /content/themes/default/templates/admin.php
Add the following code where you want the Plugins menu to appear:
<!-- Plugin System -->
<li {if $view == "plugins"}class="active"{/if}>
<a href="{$system['system_url']}/{$control_panel['url']}/helptor">
<i class="fa fa-plug fa-lg fa-fw mr10" style="color: #03A9F4"></i>
{__("Plugins")}
</a>
</li>
<!-- Plugin System -->
File Location: /content/themes/default/templates/admin.php
Add the following code where you want the Plugins menu to appear:
<!-- Plugin System -->
<li {if $view == "plugins"}class="active"{/if}>
<a href="{$system['system_url']}/{$control_panel['url']}/helptor">
<i class="fa fa-plug fa-lg fa-fw mr10" style="color: #03A9F4"></i>
{__("Plugins")}
</a>
</li>
<!-- Plugin System -->
To add the Plugins menu to the Admin Panel, follow these steps:
File Location: /content/themes/default/templates/admin.php
Add the following code where you want the Plugins menu to appear:
<!-- Plugin System -->
<li {if $view == "plugins"}class="active"{/if}>
<a href="{$system['system_url']}/{$control_panel['url']}/helptor">
<i class="fa fa-plug fa-lg fa-fw mr10" style="color: #03A9F4"></i>
{__("Plugins")}
</a>
</li>
<!-- Plugin System -->


