source: sipes/modules_contrib/ctools/API.txt @ 177a560

stableversion-3.0
Last change on this file since 177a560 was 177a560, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio de modulos contribuidos de drupal

  • Propiedad mode establecida a 100755
File size: 4.2 KB
Línea 
1API.txt: $Id: API.txt,v 1.5.2.25 2010/08/30 22:07:52 merlinofchaos Exp $
2
3This file contains a log of changes to the API.
4API version 1.8
5  Introduce 'get base contexts' callback to all tasks to facilitate
6    Page Manager's site template extracting contexts from the environment.
7  Introduce 'ctools_content_editable' function and the corresponding
8    'check editable' callback on all content types to determine if a
9    content type can be edited based upon configuration.
10  Introduce utility.inc and move some code to it.
11  Introduce page-wizard.inc and a "page_wizard" type plugin for Page Manager.
12
13API version 1.7.2
14  Allow Export UI to automatically have wizards by setting 'use wizard' => TRUE
15  Moved the Panels Stylizer module into CTools so that the UI can be
16    used to manage styles for modules other than Panels.
17  Introduce ctools_access_ruleset module for customizable access rulesets.
18  Introduce ctools_custom_content module for customizable content panes.
19  Add 'convert default' as a converter keyword for context implementations.
20    Instead of reverting $context->title this will cause %context without
21    :converter to use a default converter.
22 
23API version 1.7.1
24  Introduce 'modal return' and 'ajax return' to wizard.inc to allow
25    wizard owners to process their own ajax/modal output.
26  Introduce math-expr.inc to allow simple math expression parsing.
27
28API version 1.7
29  Introduce the export-ui plugin. This introduces new keys to the 'export'
30    section of schema: 'primary key', 'key name'.
31  Introduce ctools_export_crud_ functions to provide CRUD access to most
32    exportables. This introduces several optional callback keys to the
33    'export' section of the schema to provide overrides.
34  Introduce auto-submit.js. Forms may now be set to auto submit just by
35    adding appropriate classes.
36  Provide new default functions for bulk export. This may make items that
37    were previously not bulk exportable due to missing 'list' callback
38    appear in the bulk export UI.
39 
40API version 1.5
41  Add two new alter hooks: page_manager_operations_alter and
42      page_manager_variant_operations_alter to allow modules to add tabs
43      to any page manager page.
44
45API version 1.4:
46  Allow themes to provide APIs which includes default pages of all types.
47  Intorduce ctools_css_add_css() to allow private file systems to have generated CSS.
48  Introduce initial build of stylizer.inc to allow UI configurable styles.
49  Introduce 'cache warming' feature. Use 'ctools-use-ajax-cache' or
50    'ctools-use-modal-cache'. Doing so will cause content to be fetched
51    via AJAX on page load and kept warm in a cache for instant responses
52    to clicks.
53  Generalized ctools_add_css().
54  Generalized ctools_add_js().
55  Generalized ctools_image_path().
56  Make global hooks for plugin definition optional through a 'use hooks'
57    plugin option.
58
59API version 1.3.2:
60  Introduce 'export callback' to individual fields in export.inc
61
62API version 1.3.1:
63  #649144 by neclimdul: Expand ctools_include() to work for other modules.
64
65API version 1.3:
66  Introduce ctools_jump_menu().
67  Change plugins to no longer need magic function. Can now use $plugin = array(...) instead.
68
69API version 1.2:
70  Introduce ctools_set_variable_token().
71  Introduce ctools_set_callback_token().
72  Introduce cleanstring tool. See cleanstring.inc
73  Introduce page_manager_get_current_page().
74  Introduce ctools_ajax_command_redirect().
75  Introduce ctools_ajax_command_reload().
76  Introduce ctools_ajax_command_submit().
77  Introduce ctools_static().
78  Introduce ctools_modal_command_loading().
79
80API version 1.1.1:
81  Introduce ctools_plugin_get_class() and ctools_plugin_load_class()
82  Introduce ctools_ajax_command_attr().
83  Introduce ctools_set_page_token().
84
85API version 1.1.0:
86  delegator module destroyed, replaced by page manager. All 'task' and 'task_handler' plugins
87  now owned by page_manager. Update plugin hooks accordingly. The filename for defaults
88  for pages and handlers should now be MODULE.pages_default.inc
89
90  The task_type plugin has been removed.
91
92  Task handlers no longer have a separate UI. While task handlers can still
93  be separated from pages for other purposes, they will probably need
94  to implement their own UI to do it.
95
96API version 1.0:
97  Initial CTools API version.
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.