| Commit message (Collapse) | Author | Age |
|
|
|
| |
package support to the modules page.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
- Make installer code integrate better with module.inc / system.module
- Fix schema version bug when installing core
|
|
|
|
| |
et al: an initial install system for Drupal core.
|
|
|
|
| |
process.
|
| |
|
| |
|
|
|
|
|
|
| |
where I felt that sortign by weight would be wanted.
We can discuss those on the issue. Patch by chx.
|
|
|
|
| |
required modules, patch by Robert Douglass
|
| |
|
| |
|
|
|
|
| |
manipulating the same array references.
|
| |
|
|
|
|
| |
"This function is called in one place, so it can be rolled into the calling function. The return value isn't used so we can remove handling of it. This is executed for every non-cached page view, so the smaller code should save a smallish ammount of memory and time."
|
|
|
|
| |
modules during the bootstrap. this is easy to do by calling a node_load() or module_invoke_all(). this degrades performance for anonymous users when caching is enabled. With this patch, the module writer will see an php error like "Call to undefined function: drupal_set_html_head()" if this is attempted. basically, unavailable functions are actually reported as unavailable.
|
|
|
|
| |
use NULL defaults (bugfix) + removed the limitation on the number of paramaters that can be used.
|
| |
|
| |
|
|
|
|
| |
hook. A recent patch to 4.5 and HEAD made this patch run too early in the request (for non-cached pages).
|
|
|
|
|
| |
+ Make bootstrap functionality work with HEAD.
+ Move functions into bootstrap.inc so that statistics_exit() works for cached pages. (Does this close any issues?)
|
|
|
|
|
| |
+ added support for multi-site configurations.
+ tidied up some old cruft and added code comments.
|
|
|
|
|
|
|
|
|
|
|
|
| |
* There are only two throttle levels instead of 5, namely 'enabled' and 'disabled'. This makes it a _lot_ easier to predict when the throttle will kick in. However, if you maintain a module that is throttle-aware, it needs to be updated!
* The throttle mechanism now uses the current number of anonymous users or the current number of authenticated users to kick in. This is a _lot_ more intuitive than the old throttle mechanism.
* The throttle block has been removed -- you can now use the "Who's online" block to determine the good throttle settings.
* Most of the documentation has been removed because it was deprecated.
* It's less code!
|
|
|
|
|
|
| |
Doxygen documentation and screen output.
Uwe: I dropped the 'iff' chunks as 'iff' stands for 'if and only if'.
|
|
|
|
| |
behave unexpectedly if a module cannot be found (has been removed, renamed, etc). Once one module fails to load, all subsequent modules will not be loaded due to a short circuit condition when performing a boolean AND.
|
|
|
|
| |
improved consistency to the use of Doxygen/api.module commands in the comments.
|
|
|
|
| |
broken.
|
|
|
|
|
|
|
|
|
|
|
|
| |
which maintains a list of modules that have already been loaded in a static array, and will not load another module of the same name, or if the file does not exist.
Modules can be stored anywhere, as there is now a set of functions called module_get_filename, and module_set_filename .. which allow system_listing and module_list to specify the locations of the files.
A new function module_load_all() replaces the hardcoded includes in module_init, and loads all modules which have been enabled, using module_load.
module_listing no longer includes files itself, instead it just keeps the listing (and sets the filenames).
This patch is a requirement for the multisite configuration patch, as overriding modules are currently being loaded due to the only protection of loading them is include_once.
|
| |
|
| |
|
| |
|
|
|
|
| |
bootstrap code. Patch by Kjartan.
|
| |
|
|
|
|
|
|
|
|
| |
filter.module (which is a required module).
To do this cleanly, I reorganised some bits of system.module: there is now a generic handler available for simple variable-get/set based configuration pages. Look at filter_admin() or system_view() for example usage.
(based on the patch by Goba)
|
|
|
|
| |
under heave load.
|
|
|
|
| |
- Used legend and fieldset tags for the configuration page.
|
| |
|
| |
|
| |
|
|
|
|
| |
rebuild the menu.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
- module.inc:
+ added call to _init for all modules
- statistics.module:
+ added statistics_init()
+ moved all global actions into statistics_init()
|
| |
|
|
|
|
|
|
|
|
|
| |
- Modules and themes now use the same functions to find and administer
files.
- Modules can now be placed in sub-directories.
- Theme descriptions can no longer be edited. This will be handled by
Dries' theme_conf patch.
- Update required to keep old modules enabled.
|