ForwardFW
[ class tree: ForwardFW ] [ index: ForwardFW ] [ all elements ]

Source for file Session.php

Documentation is available at Session.php

  1. <?php
  2. declare(encoding "utf-8");
  3. /**
  4.  * This file is part of ForwardFW a web application framework.
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  * PHP version 5
  21.  *
  22.  * @category   Cache
  23.  * @package    ForwardFW
  24.  * @subpackage Cache/Backend
  25.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  26.  * @copyright  2009-2010 The Authors
  27.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  28.  * @version    SVN: $Id: $
  29.  * @link       http://forwardfw.sourceforge.net
  30.  * @since      File available since Release 0.0.8
  31.  */
  32.  
  33. require_once 'ForwardFW/Config/Cache/Backend.php';
  34. require_once 'ForwardFW/Interface/Application.php';
  35. require_once 'ForwardFW/Cache/Backend.php';
  36.  
  37. /**
  38.  * Implementation of a Cache Backend.
  39.  *
  40.  * @category   Cache
  41.  * @package    ForwardFW
  42.  * @subpackage Cache/Backend
  43.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  44.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  45.  * @link       http://forwardfw.sourceforge.net
  46.  */
  47. {
  48.     /**
  49.      * Constructor
  50.      *
  51.      * @param ForwardFW_Interface_Application $application The running application.
  52.      * @param ForwardFW_Config_Cache_Backend  $config      Backend config.
  53.      */
  54.     public function __construct(
  55.         ForwardFW_Interface_Application $application,
  56.         ForwardFW_Config_Cache_Backend $config
  57.     {
  58.         session_start();
  59.         parent::__construct($application$config);
  60.     }
  61.  
  62.     /**
  63.      * Writes data into the cache
  64.      *
  65.      *
  66.      * @param string $strHash Hash for data.
  67.      * @param array  $arData  Data to save into cache.
  68.      *
  69.      * @return void 
  70.      */
  71.     protected function writeData($strHasharray $arData)
  72.     {
  73.         $_SESSION['cache'][$strHash$arData;
  74.     }
  75.  
  76.     /**
  77. /**
  78.      * Reads data from the cache
  79.      *
  80.      * @param string $strHash Hash for data.
  81.      *
  82.      * @return array Data from the storage
  83.      */
  84.     protected function readData($strHash)
  85.     {
  86.         return $_SESSION['cache'][$strHash];
  87.     }
  88.  
  89.     /**
  90.      * Removes data from the cache
  91.      *
  92.      * @param string $strHash Hash for data.
  93.      *
  94.      * @return boolean Returns true if data removed otherwise false.
  95.      */
  96.     protected function removeData($strHash)
  97.     {
  98.         unset($_SESSION['cache'][$strHash]);
  99.         return true;
  100.     }
  101.  
  102.     /**
  103.      * Clear complete cache
  104.      *
  105.      * @return void 
  106.      */
  107.     protected function clear($strHash)
  108.     {
  109.         $_SESSION['cache'array();
  110.         return true;
  111.     }
  112. }
  113. ?>

Documentation generated on Sun, 30 Jan 2011 20:46:45 +0100 by phpDocumentor 1.4.3