mirror of https://github.com/avecms/AVE.cms.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
<?php |
|
|
|
/** |
|
* Функция отдает время когда менялась рубрика или ее поля |
|
* |
|
*/ |
|
function get_rubrics_changes () |
|
{ |
|
global $AVE_DB; |
|
|
|
if (Registry::stored('rubric_changes')) |
|
return Registry::get('rubric_changes'); |
|
|
|
$cache_file = BASE_DIR . '/tmp/cache/sql/rubrics/all/rubrics.cahnges'; |
|
|
|
// Если включен DEV MODE, то отключаем кеширование запросов |
|
if (defined('DEV_MODE') and DEV_MODE) |
|
$cache_file = null; |
|
|
|
if (! is_dir(dirname($cache_file))) |
|
mkdir(dirname($cache_file), 0766, true); |
|
|
|
if (file_exists($cache_file)) |
|
{ |
|
$rubrics = unserialize(file_get_contents($cache_file)); |
|
} |
|
else |
|
{ |
|
$query = " |
|
SELECT |
|
Id, |
|
rubric_changed, |
|
rubric_changed_fields |
|
FROM |
|
" . PREFIX . "_rubrics |
|
"; |
|
|
|
$sql = $AVE_DB->Query($query); |
|
|
|
$rubrics = []; |
|
|
|
while ($row = $sql->FetchAssocArray()) |
|
$rubrics[$row['Id']] = $row; |
|
|
|
if ($cache_file) |
|
file_put_contents($cache_file, serialize($rubrics)); |
|
} |
|
|
|
Registry::set('rubric_changes', $rubrics); |
|
|
|
return Registry::get('rubric_changes'); |
|
} |
|
?>
|