summaryrefslogtreecommitdiffstats
path: root/system/libraries/Session/drivers
diff options
context:
space:
mode:
authorDarren Hill <dchill42@gmail.com>2011-09-01 13:36:26 +0200
committerDarren Hill <dchill42@gmail.com>2011-09-01 13:36:26 +0200
commita2ae6571e55d5a3d23645e96929eea996e9f0499 (patch)
tree652c681abb9555be0ca681290795532893ad04b8 /system/libraries/Session/drivers
parent6fbf6bd1dfa2ef373fc8072c52f63446cdd00327 (diff)
Made private members protected for inheritance
Diffstat (limited to 'system/libraries/Session/drivers')
-rwxr-xr-xsystem/libraries/Session/drivers/Session_cookie.php66
-rwxr-xr-xsystem/libraries/Session/drivers/Session_native.php28
2 files changed, 47 insertions, 47 deletions
diff --git a/system/libraries/Session/drivers/Session_cookie.php b/system/libraries/Session/drivers/Session_cookie.php
index d26ab0432..334218ec2 100755
--- a/system/libraries/Session/drivers/Session_cookie.php
+++ b/system/libraries/Session/drivers/Session_cookie.php
@@ -27,23 +27,23 @@
* @author ExpressionEngine Dev Team
*/
class CI_Session_cookie extends CI_Session_driver {
- private $sess_encrypt_cookie = FALSE;
- private $sess_use_database = FALSE;
- private $sess_table_name = '';
- private $sess_expiration = 7200;
- private $sess_expire_on_close = FALSE;
- private $sess_match_ip = FALSE;
- private $sess_match_useragent = TRUE;
- private $sess_cookie_name = 'ci_session';
- private $cookie_prefix = '';
- private $cookie_path = '';
- private $cookie_domain = '';
- private $sess_time_to_update = 300;
- private $encryption_key = '';
- private $time_reference = 'time';
- private $userdata = array();
- private $CI = null;
- private $now = 0;
+ protected $sess_encrypt_cookie = FALSE;
+ protected $sess_use_database = FALSE;
+ protected $sess_table_name = '';
+ protected $sess_expiration = 7200;
+ protected $sess_expire_on_close = FALSE;
+ protected $sess_match_ip = FALSE;
+ protected $sess_match_useragent = TRUE;
+ protected $sess_cookie_name = 'ci_session';
+ protected $cookie_prefix = '';
+ protected $cookie_path = '';
+ protected $cookie_domain = '';
+ protected $sess_time_to_update = 300;
+ protected $encryption_key = '';
+ protected $time_reference = 'time';
+ protected $userdata = array();
+ protected $CI = null;
+ protected $now = 0;
const gc_probability = 5;
@@ -224,10 +224,10 @@ class CI_Session_cookie extends CI_Session_driver {
/**
* Fetch the current session data if it exists
*
- * @access private
+ * @access protected
* @return bool
*/
- private function _sess_read()
+ protected function _sess_read()
{
// Fetch the cookie
$session = $this->CI->input->cookie($this->sess_cookie_name);
@@ -343,10 +343,10 @@ class CI_Session_cookie extends CI_Session_driver {
/**
* Create a new session
*
- * @access private
+ * @access protected
* @return void
*/
- private function _sess_create()
+ protected function _sess_create()
{
$sessid = '';
while (strlen($sessid) < 32)
@@ -376,11 +376,11 @@ class CI_Session_cookie extends CI_Session_driver {
/**
* Update an existing session
*
- * @access private
+ * @access protected
* @param boolean Force update flag (default: false)
* @return void
*/
- private function _sess_update($force = false)
+ protected function _sess_update($force = false)
{
// We only update the session every five minutes by default (unless forced)
if (!$force && ($this->userdata['last_activity'] + $this->sess_time_to_update) >= $this->now())
@@ -433,10 +433,10 @@ class CI_Session_cookie extends CI_Session_driver {
/**
* Get the "now" time
*
- * @access private
+ * @access protected
* @return int
*/
- private function _get_time()
+ protected function _get_time()
{
if (strtolower($this->time_reference) == 'gmt')
{
@@ -455,11 +455,11 @@ class CI_Session_cookie extends CI_Session_driver {
/**
* Write the session cookie
*
- * @access private
+ * @access protected
* @param array Cookie name/value pairs
* @return void
*/
- private function _set_cookie(array $cookie_data = NULL)
+ protected function _set_cookie(array $cookie_data = NULL)
{
if (is_null($cookie_data))
{
@@ -491,11 +491,11 @@ class CI_Session_cookie extends CI_Session_driver {
* This function first converts any slashes found in the array to a temporary
* marker, so when it gets unserialized the slashes will be preserved
*
- * @access private
+ * @access protected
* @param mixed Data to serialize
* @return string
*/
- private function _serialize($data)
+ protected function _serialize($data)
{
if (is_array($data))
{
@@ -524,11 +524,11 @@ class CI_Session_cookie extends CI_Session_driver {
* This function unserializes a data string, then converts any
* temporary slash markers back to actual slashes
*
- * @access private
+ * @access protected
* @param string Data to unserialize
* @return mixed
*/
- private function _unserialize($data)
+ protected function _unserialize($data)
{
$data = @unserialize(strip_slashes($data));
@@ -554,10 +554,10 @@ class CI_Session_cookie extends CI_Session_driver {
* This deletes expired session rows from database
* if the probability percentage is met
*
- * @access private
+ * @access protected
* @return void
*/
- private function _sess_gc()
+ protected function _sess_gc()
{
if ($this->sess_use_database != TRUE)
{
diff --git a/system/libraries/Session/drivers/Session_native.php b/system/libraries/Session/drivers/Session_native.php
index 37da3445a..c7130b688 100755
--- a/system/libraries/Session/drivers/Session_native.php
+++ b/system/libraries/Session/drivers/Session_native.php
@@ -5,11 +5,11 @@
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
- * @author ExpressionEngine Dev Team
- * @copyright Copyright (c) 2008 - 2010, EllisLab, Inc.
+ * @author ExpressionEngine Dev Team
+ * @copyright Copyright (c) 2008 - 2010, EllisLab, Inc.
* @license http://codeigniter.com/user_guide/license.html
* @link http://codeigniter.com
- * @since Version 2.0
+ * @since Version 2.0
* @filesource
*/
@@ -22,13 +22,13 @@
* @package CodeIgniter
* @subpackage Libraries
* @category Sessions
- * @author ExpressionEngine Dev Team
+ * @author ExpressionEngine Dev Team
*/
class CI_Session_native extends CI_Session_driver {
/**
* Initialize session driver object
*
- * @access protected
+ * @access protected
* @return void
*/
protected function initialize()
@@ -126,8 +126,8 @@ class CI_Session_native extends CI_Session_driver {
/**
* Save the session data
*
- * @access public
- * @return void
+ * @access public
+ * @return void
*/
public function sess_save()
{
@@ -137,8 +137,8 @@ class CI_Session_native extends CI_Session_driver {
/**
* Destroy the current session
*
- * @access public
- * @return void
+ * @access public
+ * @return void
*/
public function sess_destroy()
{
@@ -160,9 +160,9 @@ class CI_Session_native extends CI_Session_driver {
*
* Regenerate the session id
*
- * @access public
- * @param boolean Destroy session data flag (default: false)
- * @return void
+ * @access public
+ * @param boolean Destroy session data flag (default: false)
+ * @return void
*/
public function sess_regenerate($destroy = false)
{
@@ -173,8 +173,8 @@ class CI_Session_native extends CI_Session_driver {
/**
* Get a reference to user data array
*
- * @access public
- * @return array Reference to userdata
+ * @access public
+ * @return array Reference to userdata
*/
public function &get_userdata()
{