JBrowser/isSSLConnection: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 32: | Line 32: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=isSSLConnection | category=isSSLConnection | ||
category=JBrowser | category=JBrowser | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 00:19, 25 March 2017
Description
Determine if we are using a secure (SSL) connection.
<! removed transcluded page call, red link never existed >
Syntax
isSSLConnection()
Returns
boolean True if using SSL, false if not.
Defined in
libraries/joomla/environment/browser.php
Importing
jimport( 'joomla.environment.browser' );
Source Body
function isSSLConnection()
{
return ((isset($_SERVER['HTTPS']) &&
($_SERVER['HTTPS'] == 'on')) ||
getenv('SSL_PROTOCOL_VERSION'));
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples