{% extends "_layouts/cp" %} {% set title = "Plugins"|t %} {% set crumbs = [ { label: "Settings"|t, url: url('settings') } ] %} {% set plugins = craft.plugins.getPlugins(false) %} {% set content %} {% if plugins|length %}
{{ "Plugin"|t }} | {{ "Developer"|t }} | {{ "Status"|t }} | {% for plugin in plugins %} |
---|---|---|---|
{% if plugin.isEnabled and plugin.settingsHtml %} {{ plugin.name }} {% else %} {{ plugin.name }} {% endif %} {{ plugin.version }} | {{ plugin.developer }} |
{{ "There are no available plugins."|t }} {% endif %} {% endset %}