Development Guides Home >> Guide to Standardized Hooks
Guide to Standardized Hooks - Hookable Events
Hookable events set the action that triggers a hook, and whether the hook triggers before or after the event. Within any cPanel & WHM event (for example, an API call or binary process), the code contains the following phases:
- Preparation — The preparation of variables and the environment.
- Execution — The execution of specific operations.
- Rendering — The rendering of the operation's results via HTTP content headers and body.
cPanel & WHM events run routines before (pre
) or after (post
) the execution phase.
Most pre
events can signal a failure that skips the execution phase of the event entirely. The rendering phase uses this signal as if the failure occurred natively, before execution.
Hookable events
The Standardized Hooks system uses the following categories for hookable events:
-
ConvertAddon
— TheConvertAddon
category's events occur during WHM functions. -
Cpanel
— TheCpanel
category creates hookable events for cPanel API 1 , cPanel API 2 , or UAPI functions. -
DiskQuota
— TheDiskQuota
category's events occur during disk quota processing. -
modsec_vendor
script — Themodsec_vendor
script category's events occur when you run a WHM script . These scripts reside in the/usr/local/cpanel/scripts/
directory. -
ModSecurity
— TheModSecurity
™ category's events occur during WHM functions. -
Passwd
— ThePasswd
category's events occur when a WHM user or a cPanel user changes a cPanel user's password. -
PkgAcct
— ThePkgAcct
category's events occur during backup creation. -
RPM::Versions
— TheRPM::Versions
category creates hookable events for RPMs. -
Scripts
— Thescripts
category's events occur when email scripts run. -
Stats
— TheStats
category's events occur during statistics processing. -
System
— TheSystem
category's events occur during system updates or backups. -
Whostmgr
— TheWhostmgr
category's events occur during WHM functions.
Advanced users can define additional hookable events in their custom modules.
Hookable event attributes
All hookable events are comprised of three main attributes:
-
category
— The event's logical grouping within cPanel & WHM. -
event
— The event that cPanel & WHM performs. -
stage
— The location of the trigger that runs the hook action code, relative to the event.
Some hookable events may include additional attributes:
-
blocking
— Whether a returned failure from the hook action code prevents the event's execution. Only specificpre
-stage events can block. -
escalateprivs
— Whether the hookable event can escalate privileges before the hook action code runs. (Scripts only .) -
Action Code Run As
— The system user that owns the process that executes the hook action code.
These additional attributes are implicit implementation details that relate to the cPanel & WHM code that dispatches the hookable event.
If the blocking
and escalateprivs
attributes are present for a given event, the hook action code can use the describe
method to define the rollback
and escalateprivs
attributes for registration.