You are here

public function RestfulDataProviderCToolsPlugins::getPlugins in RESTful 7

Return the plugins.

Return value

array

2 calls to RestfulDataProviderCToolsPlugins::getPlugins()
RestfulCToolsPluginsDiscovery::getPlugins in plugins/restful/ctools_plugins/1.0/RestfulCToolsPluginsDiscovery.class.php
Overrides \RestfulDataProviderCToolsPlugins::getPlugins().
RestfulDataProviderCToolsPlugins::getPluginsSortedAndFiltered in plugins/restful/RestfulDataProviderCToolsPlugins.php
Gets the plugins filtered and sorted by the request.
1 method overrides RestfulDataProviderCToolsPlugins::getPlugins()
RestfulCToolsPluginsDiscovery::getPlugins in plugins/restful/ctools_plugins/1.0/RestfulCToolsPluginsDiscovery.class.php
Overrides \RestfulDataProviderCToolsPlugins::getPlugins().

File

plugins/restful/RestfulDataProviderCToolsPlugins.php, line 54
Contains \RestfulDataProviderCToolsPlugins

Class

RestfulDataProviderCToolsPlugins
@file Contains \RestfulDataProviderCToolsPlugins

Code

public function getPlugins() {
  if ($this->plugins) {
    return $this->plugins;
  }
  $this->plugins = ctools_get_plugins($this
    ->getModule(), $this
    ->getType());
  return $this->plugins;
}