0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
4.0.5-0
/
standard
/
htdocs
/
inc
/
cron
/
jobs
/
[
Home
]
File: _prune_page_cache.job.php
<?php /** * This file implements the Page Cache pruning Cron controller (delete old files from the cache) * * @author asimo: Attila Simo * * @version $Id: _prune_page_cache.job.php,v 1.2.2.2 2010/07/13 00:57:50 fplanque Exp $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); load_class( '_core/model/_pagecache.class.php', 'PageCache' ); $result_message = PageCache::prune_page_cache(); if( empty( $result_message ) ) { return 1; /* OK */ } return 100; /* * $Log: _prune_page_cache.job.php,v $ */ ?>