From 8ede1a2ecbb62577afd32996956c5feaf7ddf9b6 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Wed, 5 Oct 2011 13:34:52 -0500 Subject: replacing the old HTML user guide with a Sphinx-managed user guide --- user_guide/helpers/cookie_helper.html | 107 ---------------------------------- 1 file changed, 107 deletions(-) delete mode 100644 user_guide/helpers/cookie_helper.html (limited to 'user_guide/helpers/cookie_helper.html') diff --git a/user_guide/helpers/cookie_helper.html b/user_guide/helpers/cookie_helper.html deleted file mode 100644 index 3fbaa8fa1..000000000 --- a/user_guide/helpers/cookie_helper.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - -Cookie Helper : CodeIgniter User Guide - - - - - - - - - - - - - - - - - - - - - -
- - - - - -

CodeIgniter User Guide Version 2.0.3

-
- - - - - - - - - -
- - -
- - - -
- - -

Cookie Helper

- -

The Cookie Helper file contains functions that assist in working with cookies.

- - -

Loading this Helper

- -

This helper is loaded using the following code:

-$this->load->helper('cookie'); - -

The following functions are available:

- -

set_cookie()

- -

This helper function gives you view file friendly syntax to set browser cookies. Refer to the Input class for a description of use, as this function is an alias to $this->input->set_cookie().

- -

get_cookie()

- -

This helper function gives you view file friendly syntax to get browser cookies. Refer to the Input class for a description of use, as this function is an alias to $this->input->cookie().

- - -

delete_cookie()

- -

Lets you delete a cookie. Unless you've set a custom path or other values, only the name of the cookie is needed:

- -delete_cookie("name"); - -

This function is otherwise identical to set_cookie(), except that it does not have the value and expiration parameters. You can submit an array -of values in the first parameter or you can set discrete parameters.

- -delete_cookie($name, $domain, $path, $prefix) - - -
- - - - - - - \ No newline at end of file -- cgit v1.2.3-24-g4f1b