[ Index ] |
|
Code source de SPIP Agora 1.4 |
1 <?php 2 /***************************************************** 3 * This file is part of Agora, web based content management system. 4 * 5 * Agora is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; version 2 of the License. 8 * 9 * Agora is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details (file "COPYING"). 13 * 14 * Copyright © Arnaud Martin, Antoine Pitrou et Philippe Rivière. 15 * List of authors detailed in "copyright_fr.html" file. 16 * E-mail : agora@sig.premier-ministre.gouv.fr 17 * Web site : http://www.agora.gouv.fr 18 *****************************************************/ 19 // Base class for Agora CACHE HTML front. 20 // 21 if (defined("_CONTAINER")) 22 return; 23 24 define("_CONTAINER", "1"); 25 26 /** 27 * AgoraCache is a class for front cache HTML. 28 * @package cache_html 29 * @author Erwan Le Bescond <elebescond@clever-age.com> 30 * @access public 31 */ 32 33 class Container { 34 35 // {{{ properties 36 // }}} 37 38 // {{{ constructor 39 40 /** 41 * Container constructor. 42 * 43 * @access public 44 */ 45 46 function Container () { } 47 48 // }}} 49 50 // {{{ 51 52 function save ($data, $groupId, $cacheName) { 53 return get_class($this). 'save: PAS D\'IMPLEMENTAION DE CETTE METHODE'; 54 } 55 56 // }}} 57 58 // {{{ 59 60 function load ($groupId, $cacheName) { 61 return get_class($this). 'load: PAS D\'IMPLEMENTAION DE CETTE METHODE'; 62 } 63 64 // }}} 65 66 // {{{ includeCache() 67 68 function includeCache () { 69 return get_class($this). 'includeCache: PAS D\'IMPLEMENTAION DE CETTE METHODE'; 70 } 71 72 // }}} 73 74 // {{{ 75 76 function useCache ($groupId, $cacheName, $delais) { 77 return get_class($this). 'useCache: PAS D\'IMPLEMENTAION DE CETTE METHODE'; 78 } 79 80 // }}} 81 82 // {{{ 83 84 function destroyCache () { 85 return get_class($this). 'destroyCache: PAS D\'IMPLEMENTAION DE CETTE METHODE'; 86 } 87 88 // }}} 89 90 // {{{ 91 92 function destroyAllCache ($groupId) { 93 return get_class($this). 'destroyAllCache: PAS D\'IMPLEMENTAION DE CETTE METHODE'; 94 } 95 96 // }}} 97 98 // {{{ 99 100 function cacheExist () { 101 return get_class($this). 'cacheExist: PAS D\'IMPLEMENTAION DE CETTE METHODE'; 102 } 103 104 // }}} 105 106 } 107 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 14:40:03 2007 | par Balluche grâce à PHPXref 0.7 |