You are here

function _encrypt_plugin_process in Encrypt 7.3

Same name and namespace in other branches
  1. 7.2 encrypt.module \_encrypt_plugin_process()

Additional processing for plugins.

1 string reference to '_encrypt_plugin_process'
encrypt_ctools_plugin_type in ./encrypt.module
Implements hook_ctools_plugin_type().

File

./encrypt.module, line 524
Main Encrypt Drupal File

Code

function _encrypt_plugin_process(&$plugin, $info) {

  // Calculate dependencies and attach any errors.
  if ($plugin['dependency callback'] && ($dep_function = ctools_plugin_get_function($plugin, 'dependency callback'))) {
    $plugin['dependency errors'] = call_user_func($dep_function);
  }
}