API.txt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. Current API Version: 2.0.8
  2. Please note that the API version is an internal number and does not match release numbers. It is entirely possible that releases will not increase the API version number, and increasing this number too often would burden contrib module maintainers who need to keep up with API changes.
  3. This file contains a log of changes to the API.
  4. API Version 2.0.9
  5. Changed import permissions to use the new 'use ctools import' permission.
  6. API Version 2.0.8
  7. Introduce ctools_class_add().
  8. Introduce ctools_class_remove().
  9. API Version 2.0.7
  10. All ctools object cache database functions can now accept session_id as an optional
  11. argument to facilitate using non-session id keys.
  12. API Version 2.0.6
  13. Introduce a hook to alter the implementors of a certain api via hook_[ctools_api_hook]_alter.
  14. API Version 2.0.5
  15. Introduce ctools_fields_get_fields_by_type().
  16. Add language.inc
  17. Introduce hook_ctools_content_subtype_alter($subtype, $plugin);
  18. API Version 2.0.4
  19. Introduce ctools_form_include_file()
  20. API Version 2.0.3
  21. Introduce ctools_field_invoke_field() and ctools_field_invoke_field_default().
  22. API Version 2.0.2
  23. Introduce ctools_export_crud_load_multiple() and 'load multiple callback' to
  24. export schema.
  25. API Version 2.0.1
  26. Introduce ctools_export_crud_enable(), ctools_export_crud_disable() and
  27. ctools_export_crud_set_status() and requisite changes.
  28. Introduce 'object factory' to export schema, allowing modules to control
  29. how the exportable objects are instantiated.
  30. Introduce 'hook_ctools_math_expression_functions_alter'.
  31. API Version 2.0
  32. Remove the deprecated callback-based behavior of the 'defaults' property on
  33. plugin types; array addition is now the only option. If you need more
  34. complex logic, do it with the 'process' callback.
  35. Introduce a global plugin type registration hook and remove the per-plugin
  36. type magic callbacks.
  37. Introduce $owner . '_' . $api . '_hook_name' allowing modules to use their own
  38. API hook in place of 'hook_ctools_plugin_api'.
  39. Introduce ctools_plugin_api_get_hook() to get the hook name above.
  40. Introduce 'cache defaults' and 'default cache bin' keys to export.inc
  41. Versions prior to 2.0 have been removed from this document. See the D6 version
  42. for that information.