You are here

function hook_bean_types_api_info in Bean (for Drupal 7) 7

Implements hook_bean_types_api_info().

Tell the bean module that you are implemented a plugin and which version of the API are you using.

THIS IS REQUIRED

3 functions implement hook_bean_types_api_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

bean_admin_ui_bean_types_api_info in bean_admin_ui/bean_admin_ui.module
Implements hook_bean_types_api_info().
bean_bean_types_api_info in ./bean.module
Implements hook_bean_types_api_info().
bean_test_bean_types_api_info in tests/bean_test.module
Implements hook_bean_types_api_info().

File

./bean.api.php, line 11

Code

function hook_bean_types_api_info() {
  return array(
    'api' => 4,
  );
}