| 6/ includes/ locale.inc | |
| Batch operations | 6/ includes/ form.inc | Functions allowing forms processing to be spread out over several page
requests, thus ensuring that the processing does not get interrupted
because of a PHP timeout, while allowing the user to receive feedback
on the progress of the ongoing operations. |
| book.module handlers | contributions/ views/ modules/ book.views.inc | |
| comment.module handlers | contributions/ views/ modules/ comment.views.inc | Includes the tables 'comments' and 'node_comment_statistics' |
| Database abstraction layer | 6/ includes/ database.inc | Allow the use of different database servers using the same code base. |
| Default theme implementations | 6/ includes/ theme.inc | Functions and templates that present output to the user, and can be
implemented by themes. |
| Example batch definitions | documentation/ examples/ batch_example.module | Definitions of the batches used in this module. |
| Extended language API | contributions/ i18n/ i18n.module | This is an extended language API to be used by modules in i18n package. |
| File interface | 6/ includes/ file.inc | Common file handling functions. |
| Form builder functions | 6/ includes/ form.inc | Functions that build an abstract representation of a HTML form. |
| Form generation | 6/ includes/ form.inc | Functions to enable the processing and display of HTML forms. |
| Formatting | 6/ includes/ common.inc | Functions to format numbers, strings, dates, etc. |
| Handlers for arguments | contributions/ views/ includes/ argument.handlers.inc | |
| Hook implementations for user-created content types. | 6/ modules/ node/ node.module | |
| Hooks | 6/ includes/ module.inc | Allow modules to interact with the Drupal core. |
| Image toolkits | 6/ includes/ image.inc | Drupal's image toolkits provide an abstraction layer for common image file
manipulations like scaling, cropping, and rotating. The abstraction frees
module authors from the need to support multiple image libraries, and it
allows site... |
| Input validation | 6/ includes/ common.inc | Functions to validate user input. |
| Menu system | 6/ includes/ menu.inc | Define the navigation menus, and route page requests to code based on URLs. |
| miscellaneous handlers | contributions/ views/ modules/ views.views.inc | |
| Node access rights | 6/ modules/ node/ node.module | The node access system determines who can do what to which nodes. |
| node.module handlers | contributions/ views/ modules/ node.views.inc | Includes the tables 'node', 'node_revisions' and 'history'. |
| Non-volatile cache storage | contributions/ views/ includes/ cache.inc | The non-volatile object cache is used to store an object while it is
being edited, so that we don't have to save until we're completely
done. The cache should be 'cleaned' on a regular basis, meaning to
remove old objects from the... |
| Objects that represent a View or part of a view. | contributions/ views/ includes/ view.inc | These objects are the core of Views do the bulk of the direction and
storing of data. All database activity is in these objects. |
| Pathauto: Automatically generates aliases for content | contributions/ pathauto/ pathauto.module | The Pathauto module automatically generates path aliases for various kinds of
content (nodes, categories, users) without requiring the user to manually
specify the path alias. This allows you to get aliases like
/category/my-node-title.html instead of... |
| poll.module handlers | contributions/ views/ modules/ poll.views.inc | Includes only the core 'poll' table for now. |
| profile.module handlers | contributions/ views/ modules/ profile.views.inc | |
| Schema API | 6/ includes/ database.inc | A Drupal schema definition is an array structure representing one or
more tables and their related keys and indexes. A schema is defined by
hook_schema(), which usually lives in a modulename.install file. |
| Search interface | 6/ modules/ search/ search.module | The Drupal search interface manages a global search mechanism. |
| search.module handlers | contributions/ views/ modules/ search.views.inc | Includes the tables 'search_index' |
| statistics.module handlers | contributions/ views/ modules/ statistics.views.inc | Includes the ability to create views of just the statistics table. |
| system.module handlers | contributions/ views/ modules/ system.views.inc | |
| taxonomy.module handlers | contributions/ views/ modules/ taxonomy.views.inc | |
| upload.module handlers | contributions/ views/ modules/ upload.views.inc | |
| user.module handlers | contributions/ views/ modules/ user.views.inc | |
| Views' display plugins | contributions/ views/ includes/ plugins.inc | Display plugins control how Views interact with the rest of Drupal. |
| Views' field handlers | contributions/ views/ includes/ field.handlers.inc | Handlers to tell Views how to build and display fields. |
| Views' filter handlers | contributions/ views/ includes/ filter.handlers.inc | Handlers to tell Views how to filter queries. |
| Views' hooks | contributions/ views/ docs/ docs.php | Hooks that can be implemented by other modules in order to implement the
Views API. |
| Views' join handlers | contributions/ views/ includes/ join.handlers.inc | Handlers to tell Views how to join tables together. |
| Views' relationship handlers | contributions/ views/ includes/ relationship.handlers.inc | Handlers to tell Views how to create alternate relationships. |
| Views' row plugins | contributions/ views/ includes/ plugins.inc | Row plugins control how Views outputs an individual record. They are
tightly coupled to style plugins, in that a style plugin is what calls
the row plugin.
See alsohook_views_plugins |
| Views' sort handlers | contributions/ views/ includes/ sort.handlers.inc | Handlers to tell Views how to sort queries |
| Views' style plugins | contributions/ views/ includes/ plugins.inc | Style plugins control how a view is rendered. For example, they
can choose to display a collection of fields, node_view() output,
table output, or any kind of crazy output they want. |
| Views' template files | contributions/ views/ theme/ theme.inc | All views templates can be overridden with a variety of names, using
the view, the display ID of the view, the display type of the view,
or some combination thereof. |