public static function secureCookieBasic::get_domain in Secure Cookie Data 7
Same name and namespace in other branches
- 7.2 secure_cookie_data.class.inc \secureCookieBasic::get_domain()
Get the current cookie domain.
Return value
string The cookie domain.
1 call to secureCookieBasic::get_domain()
- secure_cookie_data_put in ./
secure_cookie_data.module - Sets the secure cookie with the given data.
File
- ./
secure_cookie_data.class.inc, line 44 - secure_cookie.class.inc @author António P. P. Almeida <appa@perusio.net> @date Wed Dec 21 03:17:53 2011
Class
- secureCookieBasic
- @file secure_cookie.class.inc @author António P. P. Almeida <appa@perusio.net> @date Wed Dec 21 03:17:53 2011
Code
public static function get_domain() {
return ini_get('session.cookie_domain');
}