| 8 | | * User Guide: http://kohanaphp.com/user_guide/en/general/cookies.html |
| 9 | | * |
| 10 | | * @param string prefix - Prefix to avoid collisions |
| 11 | | * @param string domain - Domain to restrict cookie to |
| 12 | | * @param string path - Path to restrict cookie to |
| 13 | | * @param integer expire - Liftime of cookie in seconds (0 = until browser closes) |
| 14 | | * @param boolean secure - Only allow the cookie on HTTPS |
| 15 | | * @param boolean httponly - Only allow cookie access through the HTTP protocol |
| 16 | | * |
| | 7 | * Options: |
| | 8 | * prefix - Prefix to avoid collisions, empty for no prefix |
| | 9 | * domain - Domain to restrict cookie to, empty to allow any domain |
| | 10 | * path - Path to restrict cookie to, empty to allow any path |
| | 11 | * expire - Liftime of cookie in seconds, 0 for a single browser session |
| | 12 | * secure - Enable or disable HTTPS-only access |
| | 13 | * httponly - Enable or disable HTTP-only access |