Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3443488
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3443488
Commits
a4ed940a
Commit
a4ed940a
authored
18 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#104309
by jvandyck: documentation improvements.
parent
bb2a637d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/throttle/throttle.module
+17
-7
17 additions, 7 deletions
modules/throttle/throttle.module
with
17 additions
and
7 deletions
modules/throttle/throttle.module
+
17
−
7
View file @
a4ed940a
...
...
@@ -28,10 +28,15 @@ function throttle_menu($may_cache) {
* Determine the current load on the site.
*
* Call the throttle_status() function from your own modules, themes, blocks,
* etc. to determine the current throttle status. For example, in your theme
* you might choose to disable pictures when your site is too busy (reducing
* bandwidth), or in your modules you might choose to disable some complicated
* logic when your site is too busy (reducing CPU utilization).
* etc. as follows:
*
* $throttle = module_invoke('throttle', 'status');
*
* to determine the current throttle status. Use module_invoke() so the
* call will still work if the throttle module is disabled. For example, in
* your theme you might choose to disable pictures when your site is too busy
* (reducing bandwidth), or in your modules you might choose to disable
* some complicated logic when your site is too busy (reducing CPU utilization).
*
* @return
* 0 or 1. 0 means that the throttle is currently disabled. 1 means that
...
...
@@ -57,10 +62,15 @@ function throttle_exit() {
// limiting throttle related database calls to 1 in N.
if
(
!
mt_rand
(
0
,
variable_get
(
'throttle_probability_limiter'
,
9
)))
{
// Count users with activity in the past n seconds, defined in user module
$time_period
=
variable_get
(
'user_block_seconds_online'
,
2700
);
// Count users with activity in the past n seconds.
// This value is defined in the user module Who's Online block.
$time_period
=
variable_get
(
'user_block_seconds_online'
,
900
);
$throttle
=
module_invoke
(
'throttle'
,
'status'
);
// When determining throttle status in your own module or theme, use
// $throttle = module_invoke('throttle', 'status');
// as that will still work when throttle.module is disabled.
// Clearly here the module is enabled so we call throttle_status() directly.
$throttle
=
throttle_status
();
if
(
$max_guests
=
variable_get
(
'throttle_anonymous'
,
0
))
{
$guests
=
sess_count
(
time
()
-
$time_period
,
TRUE
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment