]> git.mxchange.org Git - friendica.git/commitdiff
Restore deprecated constants in boot
authorHypolite Petovan <mrpetovan@gmail.com>
Thu, 1 Mar 2018 05:33:10 +0000 (00:33 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 5 Mar 2018 04:13:19 +0000 (23:13 -0500)
boot.php

index a8b998fe1b489ba058547ddee6fe285151388292..a069dcafc974e43312f0f6bf29141983cab40d0e 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1,6 +1,6 @@
 <?php
 /**
- * @file_tag_unsave_file boot.php
+ * @file boot.php
  * This file defines some global constants and includes the central App class.
  */
 
@@ -21,6 +21,7 @@ require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'a
 
 use Friendica\App;
 use Friendica\Core\Addon;
+use Friendica\Core\Cache;
 use Friendica\Core\Config;
 use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
@@ -119,6 +120,24 @@ define('LOGGER_DATA',            3);
 define('LOGGER_ALL',             4);
 /* @}*/
 
+/**
+ * @name Cache
+ * @deprecated since version 3.6
+ * @see Cache
+ *
+ * Cache levels
+ * @{
+ */
+define('CACHE_MONTH',            Cache::MONTH);
+define('CACHE_WEEK',             Cache::WEEK);
+define('CACHE_DAY',              Cache::DAY);
+define('CACHE_HOUR',             Cache::HOUR);
+define('CACHE_HALF_HOUR',        Cache::HALF_HOUR);
+define('CACHE_QUARTER_HOUR',     Cache::QUARTER_HOUR);
+define('CACHE_FIVE_MINUTES',     Cache::FIVE_MINUTES);
+define('CACHE_MINUTE',           Cache::MINUTE);
+/* @}*/
+
 /**
  * @name Register
  *