converted to unix-style eol
[www-register-wizard.git] / helpers / cookie_helper.php
index 61561b7..d906882 100644 (file)
-<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');\r
-/**\r
- * CodeIgniter\r
- *\r
- * An open source application development framework for PHP 4.3.2 or newer\r
- *\r
- * @package            CodeIgniter\r
- * @author             ExpressionEngine Dev Team\r
- * @copyright  Copyright (c) 2008, EllisLab, Inc.\r
- * @license            http://codeigniter.com/user_guide/license.html\r
- * @link               http://codeigniter.com\r
- * @since              Version 1.0\r
- * @filesource\r
- */\r
-\r
-// ------------------------------------------------------------------------\r
-\r
-/**\r
- * CodeIgniter Cookie Helpers\r
- *\r
- * @package            CodeIgniter\r
- * @subpackage Helpers\r
- * @category   Helpers\r
- * @author             ExpressionEngine Dev Team\r
- * @link               http://codeigniter.com/user_guide/helpers/cookie_helper.html\r
- */\r
-\r
-// ------------------------------------------------------------------------\r
-\r
-/**\r
- * Set cookie\r
- *\r
- * Accepts six parameter, or you can submit an associative\r
- * array in the first parameter containing all the values.\r
- *\r
- * @access     public\r
- * @param      mixed\r
- * @param      string  the value of the cookie\r
- * @param      string  the number of seconds until expiration\r
- * @param      string  the cookie domain.  Usually:  .yourdomain.com\r
- * @param      string  the cookie path\r
- * @param      string  the cookie prefix\r
- * @return     void\r
- */\r
-if ( ! function_exists('set_cookie'))\r
-{\r
-       function set_cookie($name = '', $value = '', $expire = '', $domain = '', $path = '/', $prefix = '')\r
-       {\r
-               if (is_array($name))\r
-               {               \r
-                       foreach (array('value', 'expire', 'domain', 'path', 'prefix', 'name') as $item)\r
-                       {\r
-                               if (isset($name[$item]))\r
-                               {\r
-                                       $$item = $name[$item];\r
-                               }\r
-                       }\r
-               }\r
-       \r
-               // Set the config file options\r
-               $CI =& get_instance();\r
-       \r
-               if ($prefix == '' AND $CI->config->item('cookie_prefix') != '')\r
-               {\r
-                       $prefix = $CI->config->item('cookie_prefix');\r
-               }\r
-               if ($domain == '' AND $CI->config->item('cookie_domain') != '')\r
-               {\r
-                       $domain = $CI->config->item('cookie_domain');\r
-               }\r
-               if ($path == '/' AND $CI->config->item('cookie_path') != '/')\r
-               {\r
-                       $path = $CI->config->item('cookie_path');\r
-               }\r
-               \r
-               if ( ! is_numeric($expire))\r
-               {\r
-                       $expire = time() - 86500;\r
-               }\r
-               else\r
-               {\r
-                       if ($expire > 0)\r
-                       {\r
-                               $expire = time() + $expire;\r
-                       }\r
-                       else\r
-                       {\r
-                               $expire = 0;\r
-                       }\r
-               }\r
-       \r
-               setcookie($prefix.$name, $value, $expire, $path, $domain, 0);\r
-       }\r
-}\r
-       \r
-// --------------------------------------------------------------------\r
-\r
-/**\r
- * Fetch an item from the COOKIE array\r
- *\r
- * @access     public\r
- * @param      string\r
- * @param      bool\r
- * @return     mixed\r
- */\r
-if ( ! function_exists('get_cookie'))\r
-{\r
-       function get_cookie($index = '', $xss_clean = FALSE)\r
-       {\r
-               $CI =& get_instance();\r
-               return $CI->input->cookie($index, $xss_clean);\r
-       }\r
-}\r
-\r
-// --------------------------------------------------------------------\r
-\r
-/**\r
- * Delete a COOKIE\r
- *\r
- * @param      mixed\r
- * @param      string  the cookie domain.  Usually:  .yourdomain.com\r
- * @param      string  the cookie path\r
- * @param      string  the cookie prefix\r
- * @return     void\r
- */\r
-if ( ! function_exists('delete_cookie'))\r
-{\r
-       function delete_cookie($name = '', $domain = '', $path = '/', $prefix = '')\r
-       {\r
-               set_cookie($name, '', '', $domain, $path, $prefix);\r
-       }\r
-}\r
-\r
-\r
-/* End of file cookie_helper.php */\r
+<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
+/**
+ * CodeIgniter
+ *
+ * An open source application development framework for PHP 4.3.2 or newer
+ *
+ * @package            CodeIgniter
+ * @author             ExpressionEngine Dev Team
+ * @copyright  Copyright (c) 2008, EllisLab, Inc.
+ * @license            http://codeigniter.com/user_guide/license.html
+ * @link               http://codeigniter.com
+ * @since              Version 1.0
+ * @filesource
+ */
+
+// ------------------------------------------------------------------------
+
+/**
+ * CodeIgniter Cookie Helpers
+ *
+ * @package            CodeIgniter
+ * @subpackage Helpers
+ * @category   Helpers
+ * @author             ExpressionEngine Dev Team
+ * @link               http://codeigniter.com/user_guide/helpers/cookie_helper.html
+ */
+
+// ------------------------------------------------------------------------
+
+/**
+ * Set cookie
+ *
+ * Accepts six parameter, or you can submit an associative
+ * array in the first parameter containing all the values.
+ *
+ * @access     public
+ * @param      mixed
+ * @param      string  the value of the cookie
+ * @param      string  the number of seconds until expiration
+ * @param      string  the cookie domain.  Usually:  .yourdomain.com
+ * @param      string  the cookie path
+ * @param      string  the cookie prefix
+ * @return     void
+ */
+if ( ! function_exists('set_cookie'))
+{
+       function set_cookie($name = '', $value = '', $expire = '', $domain = '', $path = '/', $prefix = '')
+       {
+               if (is_array($name))
+               {               
+                       foreach (array('value', 'expire', 'domain', 'path', 'prefix', 'name') as $item)
+                       {
+                               if (isset($name[$item]))
+                               {
+                                       $$item = $name[$item];
+                               }
+                       }
+               }
+       
+               // Set the config file options
+               $CI =& get_instance();
+       
+               if ($prefix == '' AND $CI->config->item('cookie_prefix') != '')
+               {
+                       $prefix = $CI->config->item('cookie_prefix');
+               }
+               if ($domain == '' AND $CI->config->item('cookie_domain') != '')
+               {
+                       $domain = $CI->config->item('cookie_domain');
+               }
+               if ($path == '/' AND $CI->config->item('cookie_path') != '/')
+               {
+                       $path = $CI->config->item('cookie_path');
+               }
+               
+               if ( ! is_numeric($expire))
+               {
+                       $expire = time() - 86500;
+               }
+               else
+               {
+                       if ($expire > 0)
+                       {
+                               $expire = time() + $expire;
+                       }
+                       else
+                       {
+                               $expire = 0;
+                       }
+               }
+       
+               setcookie($prefix.$name, $value, $expire, $path, $domain, 0);
+       }
+}
+       
+// --------------------------------------------------------------------
+
+/**
+ * Fetch an item from the COOKIE array
+ *
+ * @access     public
+ * @param      string
+ * @param      bool
+ * @return     mixed
+ */
+if ( ! function_exists('get_cookie'))
+{
+       function get_cookie($index = '', $xss_clean = FALSE)
+       {
+               $CI =& get_instance();
+               return $CI->input->cookie($index, $xss_clean);
+       }
+}
+
+// --------------------------------------------------------------------
+
+/**
+ * Delete a COOKIE
+ *
+ * @param      mixed
+ * @param      string  the cookie domain.  Usually:  .yourdomain.com
+ * @param      string  the cookie path
+ * @param      string  the cookie prefix
+ * @return     void
+ */
+if ( ! function_exists('delete_cookie'))
+{
+       function delete_cookie($name = '', $domain = '', $path = '/', $prefix = '')
+       {
+               set_cookie($name, '', '', $domain, $path, $prefix);
+       }
+}
+
+
+/* End of file cookie_helper.php */
 /* Location: ./system/helpers/cookie_helper.php */
\ No newline at end of file