/home/desid573/public_html/ims2/system/helpers
NameSizeModeActions
array_helper.php35700644editdlrm
captcha_helper.php99710644editdlrm
cookie_helper.php39180644editdlrm
date_helper.php177480644editdlrm
directory_helper.php34020644editdlrm
download_helper.php46520644editdlrm
email_helper.php27740644editdlrm
file_helper.php122750644editdlrm
form_helper.php241380644editdlrm
html_helper.php96790644editdlrm
index.html1310644editdlrm
inflector_helper.php78440644editdlrm
language_helper.php26630644editdlrm
number_helper.php30630644editdlrm
path_helper.php29600644editdlrm
security_helper.php37790644editdlrm
smiley_helper.php69810644editdlrm
string_helper.php76260644editdlrm
text_helper.php145720644editdlrm
typography_helper.php33340644editdlrm
url_helper.php140470644editdlrm
xml_helper.php29390644editdlrm
Edit: /home/desid573/public_html/ims2/system/helpers/cookie_helper.php (3918B)
input->set_cookie($name, $value, $expire, $domain, $path, $prefix, $secure, $httponly); } } // -------------------------------------------------------------------- if ( ! function_exists('get_cookie')) { /** * Fetch an item from the COOKIE array * * @param string * @param bool * @return mixed */ function get_cookie($index, $xss_clean = NULL) { is_bool($xss_clean) OR $xss_clean = (config_item('global_xss_filtering') === TRUE); $prefix = isset($_COOKIE[$index]) ? '' : config_item('cookie_prefix'); return get_instance()->input->cookie($prefix.$index, $xss_clean); } } // -------------------------------------------------------------------- if ( ! function_exists('delete_cookie')) { /** * 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 */ function delete_cookie($name, $domain = '', $path = '/', $prefix = '') { set_cookie($name, '', '', $domain, $path, $prefix); } }