| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- /* $Id: functions.cache.off.php 1951 2006-12-19 02:56:18Z b4rt $ */
- /*******************************************************************************
- LICENSE
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License (GPL)
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- To read the license please visit http://www.gnu.org/copyleft/gpl.html
- *******************************************************************************/
- /*******************************************************************************
- * config
- ******************************************************************************/
- /**
- * check if cache set
- *
- * @param $username
- * @return boolean
- */
- function cacheIsSet($username) {
- return false;
- }
- /**
- * init cfg from cache
- *
- * @param $username
- */
- function cacheInit($username) {}
- /**
- * set the cache
- *
- * @param $username
- */
- function cacheSet($username) {}
- /**
- * flush the cache
- *
- * @param $username
- */
- function cacheFlush($username = "") {}
- /*******************************************************************************
- * transfer
- ******************************************************************************/
- /**
- * check if cache set
- *
- * @return boolean
- */
- function cacheTransfersIsSet() {
- return false;
- }
- /**
- * init transfers from cache
- */
- function cacheTransfersInit() {
- global $transfers;
- initGlobalTransfersArray();
- }
- /**
- * set the cache
- */
- function cacheTransfersSet() {
- global $transfers;
- initGlobalTransfersArray();
- }
- /**
- * flush the cache
- */
- function cacheTransfersFlush() {
- return;
- }
- ?>
|