source: trunk/inc/classes/BxDolCache.php

Last change on this file was 2, checked in by george, 14 years ago
  • Přidáno: Trunk revize 13719.
File size: 1.3 KB
Line 
1<?
2/***************************************************************************
3* Dolphin Smart Community Builder
4* -------------------
5* begin : Mon Mar 23 2006
6* copyright : (C) 2007 BoonEx Group
7* website : http://www.boonex.com
8* This file is part of Dolphin - Smart Community Builder
9*
10* Dolphin is free software; you can redistribute it and/or modify it under
11* the terms of the GNU General Public License as published by the
12* Free Software Foundation; either version 2 of the
13* License, or any later version.
14*
15* Dolphin is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
16* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17* See the GNU General Public License for more details.
18* You should have received a copy of the GNU General Public License along with Dolphin,
19* see license.txt file; if not, write to marketing@boonex.com
20***************************************************************************/
21
22require_once(BX_DIRECTORY_PATH_CLASSES . 'BxDolMistake.php');
23
24class BxDolCache extends BxDolMistake {
25
26 /**
27 * constructor
28 */
29 function BxDolCache() {
30 parent::BxDolMistake();
31 }
32
33 function getData($sKey) {}
34 function setData($sKey, $mixedData) {}
35}
Note: See TracBrowser for help on using the repository browser.