12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * Cookie-based session class.
- *
- * @package Kohana
- * @category Session
- * @author Kohana Team
- * @copyright (c) Kohana Team
- * @license https://koseven.ga/LICENSE.md
- */
- class Kohana_Session_Cookie extends Session {
- /**
- * @param string $id session id
- * @return string
- */
- protected function _read($id = NULL)
- {
- return Cookie::get($this->_name, NULL);
- }
- /**
- * @return null
- */
- protected function _regenerate()
- {
- // Cookie sessions have no id
- return NULL;
- }
- /**
- * @return bool
- */
- protected function _write()
- {
- return Cookie::set($this->_name, $this->__toString(), $this->_lifetime);
- }
- /**
- * @return bool
- */
- protected function _restart()
- {
- return TRUE;
- }
- /**
- * @return bool
- */
- protected function _destroy()
- {
- return Cookie::delete($this->_name);
- }
- }
|