]> git.mxchange.org Git - mailer.git/blobdiff - inc/gen_sql_patches.php
Extension ext-user for sub id tracking continued:
[mailer.git] / inc / gen_sql_patches.php
index 1173c4b3b21b767bce99d00863c521b3b0962726..783124e1b48d57dfc63436aa25dd80090460837a 100644 (file)
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -70,8 +68,9 @@ if (getMasterSalt() == '') {
 if (getFileHash() == '') {
        // Create filename from hashed random string
        $fileHash = sha1(generatePassword(mt_rand(128, 256)));
-       $FQFN = sprintf("%sinc/cache/.%s",
+       $FQFN = sprintf("%s%s.%s.cache",
                getPath(),
+               getCachePath(),
                $fileHash
        );
 
@@ -85,6 +84,7 @@ if (getFileHash() == '') {
        if (isFileReadable($FQFN)) {
                // Also update configuration
                setConfigEntry('secret_key', $secretKey);
+               updateConfiguration('file_hash', $fileHash);
 
                // Remove variables
                unset($secretKey);
@@ -92,5 +92,17 @@ if (getFileHash() == '') {
        } // END - if
 } // END - if
 
+// @TODO Rewrite this to a filter
+if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isCacheInstanceValid())) {
+       // Destroy some cache files
+       foreach (array('config', 'extension', 'filter', 'modules')  as $cache) {
+               // Is the cache file there?
+               if ($GLOBALS['cache_instance']->loadCacheFile($cache)) {
+                       // Then remove it
+                       $GLOBALS['cache_instance']->removeCacheFile();
+               } // END - if
+       } // END - foreach
+} // END - if
+
 // [EOF]
 ?>