Legacy Documentation
You are using the documentation for version 4.3.8. Go here for the latest version.
Input Library Extension Hooks¶
set_cookie_end¶
Take control of setting cookies after cookie parameters have been normalized according to the cookie configuration settings.
How it’s called:
ee()->extensions->call('set_cookie_end', $data); if (ee()->extensions->end_script === TRUE) return;
Parameters: - $data (array) – Array of prepped cookie parameters, which include
the following keys:
prefix
,name
,value
,expire
,path
,domain
,secure_cookie
Return type: Void
New in version 2.5.0.
- $data (array) – Array of prepped cookie parameters, which include
the following keys: