You are here

function panelizer_get_entity_plugins in Panelizer 7.3

Same name and namespace in other branches
  1. 7.2 panelizer.module \panelizer_get_entity_plugins()

Fetch all entity plugin.

6 calls to panelizer_get_entity_plugins()
PanelizerAdminTest::testPanelizerAdminPages in tests/panelizer.admin_settings.test
Tests panelizer overview with different entities.
PanelizerSearchApiAlterCallback::supportsIndex in plugins/search_api/PanelizerSearchApiAlterCallback.class.php
Only support indexes with Panelize-able entities.
panelizer_get_plugins_with_hook in ./panelizer.module
Fetch handler objects for all plugins that implement the named hook.
panelizer_settings_page_form in includes/admin.inc
Primary settings page.
panelizer_settings_page_form_submit in includes/admin.inc

... See full list

File

./panelizer.module, line 702
The Panelizer module attaches panels to entities, providing default panels and allowing each panel to be configured independently by privileged users.

Code

function panelizer_get_entity_plugins() {
  ctools_include('plugins');
  return ctools_get_plugins('panelizer', 'entity');
}