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

Source for file Frontend.php

Documentation is available at Frontend.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 Interface
  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. /**
  34.  *
  35.  */
  36. require_once 'ForwardFW/Config/Cache/Data.php';
  37. require_once 'ForwardFW/Config/Cache/Frontend.php';
  38. require_once 'ForwardFW/Interface/Application.php';
  39. require_once 'ForwardFW/Interface/Cache/Backend.php';
  40.  
  41. /**
  42.  * Interface for a Cache.
  43.  *
  44.  * @category   Cache
  45.  * @package    ForwardFW
  46.  * @subpackage Interface
  47.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  48.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  49.  * @link       http://forwardfw.sourceforge.net
  50.  */
  51. {
  52.     /**
  53.      * Constructor
  54.      *
  55.      * @param ForwardFW_Interface_Application   $application The running application.
  56.      * @param ForwardFW_Interface_Cache_Backend $backend     Backend for storing
  57.      *                                                        cache data.
  58.      */
  59.     public function __construct(
  60.         ForwardFW_Interface_Application $application,
  61.         ForwardFW_Interface_Cache_Backend $backend
  62.     );
  63.  
  64.     /**
  65.      * Builds an instance of cache
  66.      *
  67.      * @param ForwardFW_Interface_Application $application The running application
  68.      * @param ForwardFW_Config_Cache_Frontend $config      Configuration of caching
  69.      *
  70.      * @return ForwardFW_Interface_Cache_Frontend The cache Frontend
  71.      */
  72.     static public function getInstance(
  73.         ForwardFW_Interface_Application $application,
  74.         ForwardFW_Config_Cache_Frontend $config
  75.     );
  76.  
  77.     /**
  78.      * Returns content from cache or gathers the data
  79.      *
  80.      * @param ForwardFW_Config_Cache_Data $config What data should be get from cache
  81.      *
  82.      * @return mixed The data you requested.
  83.      */
  84.     public function getCache(
  85.         ForwardFW_Config_Cache_Data $config
  86.     );
  87. }
  88. ?>

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