0byt3m1n1 - D7net
0byt3m1n1 - D7net
Path:
/
home
/
s13cf5ef
/
www
/
newtuscamisetaspersonalizadas
/
admin
/
[
Home
]
Name File: cache.php
< back
<?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2010 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : ''); if (tep_not_null($action)) { if ($action == 'reset') { tep_reset_cache_block($HTTP_GET_VARS['block']); } tep_redirect(tep_href_link(FILENAME_CACHE)); } // check if the cache directory exists if (is_dir(DIR_FS_CACHE)) { if (!tep_is_writable(DIR_FS_CACHE)) $messageStack->add(ERROR_CACHE_DIRECTORY_NOT_WRITEABLE, 'error'); } else { $messageStack->add(ERROR_CACHE_DIRECTORY_DOES_NOT_EXIST, 'error'); } require(DIR_WS_INCLUDES . 'template_top.php'); ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> <td class="pageHeading" align="right"><?php echo tep_draw_separator('pixel_trans.gif', HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> </table></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="dataTableHeadingRow"> <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_CACHE; ?></td> <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_DATE_CREATED; ?></td> <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_ACTION; ?> </td> </tr> <?php if ($messageStack->size < 1) { $languages = tep_get_languages(); for ($i=0, $n=sizeof($languages); $i<$n; $i++) { if ($languages[$i]['code'] == DEFAULT_LANGUAGE) { $language = $languages[$i]['directory']; } } for ($i=0, $n=sizeof($cache_blocks); $i<$n; $i++) { $cached_file = preg_replace('/-language/', '-' . $language, $cache_blocks[$i]['file']); if (file_exists(DIR_FS_CACHE . $cached_file)) { $cache_mtime = strftime(DATE_TIME_FORMAT, filemtime(DIR_FS_CACHE . $cached_file)); } else { $cache_mtime = TEXT_FILE_DOES_NOT_EXIST; $dir = dir(DIR_FS_CACHE); while ($cache_file = $dir->read()) { $cached_file = preg_replace('/-language/', '-' . $language, $cache_blocks[$i]['file']); if (preg_match('/^' . $cached_file. '/', $cache_file)) { $cache_mtime = strftime(DATE_TIME_FORMAT, filemtime(DIR_FS_CACHE . $cache_file)); break; } } $dir->close(); } ?> <tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)"> <td class="dataTableContent"><?php echo $cache_blocks[$i]['title']; ?></td> <td class="dataTableContent" align="right"><?php echo $cache_mtime; ?></td> <td class="dataTableContent" align="right"><?php echo '<a href="' . tep_href_link(FILENAME_CACHE, 'action=reset&block=' . $cache_blocks[$i]['code'], 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . 'icon_reset.gif', 'Reset', 13, 13) . '</a>'; ?> </td> </tr> <?php } } ?> <tr> <td class="smallText" colspan="3"><?php echo TEXT_CACHE_DIRECTORY . ' ' . DIR_FS_CACHE; ?></td> </tr> </table></td> </tr> </table></td> </tr> </table> <?php require(DIR_WS_INCLUDES . 'template_bottom.php'); require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
©
2018. | Recode by D7net