1<?php
2
3/*
4	[UCenter] (C)2001-2099 Comsenz Inc.
5	This is NOT a freeware, use is subject to license terms
6
7	$Id: cache.php 1059 2011-03-01 07:25:09Z monkey $
8*/
9
10!defined('IN_UC') && exit('Access Denied');
11
12class cachecontrol extends base {
13
14	function __construct() {
15		$this->cachecontrol();
16	}
17
18	function cachecontrol() {
19		parent::__construct();
20	}
21
22	function onupdate($arr) {
23		$this->load("cache");
24		$_ENV['cache']->updatedata();
25	}
26
27}
28
29?>