You are here

function hybridauth_ctools_plugin_type in HybridAuth Social Login 7.2

Implements hook_ctools_plugin_type().

File

./hybridauth.module, line 625
Main file for the HybridAuth module.

Code

function hybridauth_ctools_plugin_type() {
  return array(
    'icon_pack' => array(
      'cache' => TRUE,
      // Themes can offer this plugin.
      'load themes' => TRUE,
    ),
    'provider' => array(
      'cache' => TRUE,
    ),
  );
}