function($arg = NULL)
{
if ($this->id) {
$this->open();
$this->data = $_SESSION[self::$name];
$this->close();
if (\is_null($arg)) {
return $this->data;
}
return $this->_get_value(\func_get_args());
}
}