2015-11-30 21:16:17 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace Framadate\Services;
|
|
|
|
|
|
|
|
|
|
|
|
class SessionService {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get value of $key in $section, or $defaultValue
|
|
|
|
*
|
|
|
|
* @param $section
|
|
|
|
* @param $key
|
|
|
|
* @param null $defaultValue
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function get($section, $key, $defaultValue=null) {
|
|
|
|
assert(!empty($key));
|
|
|
|
assert(!empty($section));
|
|
|
|
|
|
|
|
$this->initSectionIfNeeded($section);
|
|
|
|
|
|
|
|
$returnValue = $defaultValue;
|
|
|
|
if (isset($_SESSION[$section][$key])) {
|
|
|
|
$returnValue = $_SESSION[$section][$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $returnValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a $value for $key in $section
|
|
|
|
*
|
|
|
|
* @param $section
|
|
|
|
* @param $key
|
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function set($section, $key, $value) {
|
|
|
|
assert(!empty($key));
|
|
|
|
assert(!empty($section));
|
|
|
|
|
|
|
|
$this->initSectionIfNeeded($section);
|
|
|
|
|
|
|
|
$_SESSION[$section][$key] = $value;
|
|
|
|
}
|
|
|
|
|
2016-04-29 19:38:00 +02:00
|
|
|
/**
|
|
|
|
* Remove a session value
|
|
|
|
*
|
|
|
|
* @param $section
|
|
|
|
* @param $key
|
|
|
|
*/
|
|
|
|
public function remove($section, $key) {
|
|
|
|
assert(!empty($key));
|
|
|
|
assert(!empty($section));
|
|
|
|
|
|
|
|
unset($_SESSION[$section][$key]);
|
|
|
|
}
|
|
|
|
|
2015-11-30 21:16:17 +01:00
|
|
|
private function initSectionIfNeeded($section) {
|
|
|
|
if (!isset($_SESSION[$section])) {
|
|
|
|
$_SESSION[$section] = array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|