protected function FlagNonGlobalCookieStorage::cookie_key in Flag 7.2
Same name and namespace in other branches
- 6.2 flag.inc \FlagNonGlobalCookieStorage::cookie_key()
- 7.3 includes/flag.cookie_storage.inc \FlagNonGlobalCookieStorage::cookie_key()
2 calls to FlagNonGlobalCookieStorage::cookie_key()
- FlagNonGlobalCookieStorage::flag in ./
flag.inc - "Flags" an item.
- FlagNonGlobalCookieStorage::index_of in ./
flag.inc
File
- ./
flag.inc, line 1998 - Implements various flags. Uses object oriented style inspired by that of Views 2.
Class
- FlagNonGlobalCookieStorage
- Storage handler for non-global flags.
Code
protected function cookie_key($content_id) {
return $this->flag->name . '_' . $content_id;
}