Heacy rewrite/cleanup:
[mailer.git] / inc / loader / load-earning.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 07/31/2011 *
4  * ===================                          Last change: 07/31/2011 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : load-earning.php                                 *
8  * -------------------------------------------------------------------- *
9  * Short description : Load more cache files                            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Mehr Cache-Dateien nachladen                     *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } elseif (isInstaller()) {
42         // Do not run in installation phase
43         //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Run from installation phase.');
44         return FALSE;
45 } elseif (!isExtensionInstalled('earning')) {
46         // Do not cache if not installed!
47         return FALSE;
48 }
49
50 // Let's start with the admins table...
51 if (($GLOBALS['cache_instance']->loadCacheFile('earning')) && ($GLOBALS['cache_instance']->extensionVersionMatches('earning'))) {
52         // Load cache
53         $GLOBALS['cache_array']['earning'] = $GLOBALS['cache_instance']->getArrayFromCache();
54 } elseif ((isHtmlOutputMode()) || (isAjaxOutputMode()) || (isRawOutputMode())) {
55         // Create cache file
56         $GLOBALS['cache_instance']->init();
57
58         // Query the database about this
59         $result = sqlQuery('SELECT * FROM `{?_MYSQL_PREFIX?}_earning_data` ORDER BY `earning_id` ASC', __FILE__, __LINE__);
60         while ($data = sqlFetchArray($result)) {
61                 // Save row
62                 $GLOBALS['cache_instance']->addRow($data);
63         } // END - while
64
65         // Free memory
66         sqlFreeResult($result);
67
68         // Close cache
69         $GLOBALS['cache_instance']->storeExtensionVersion('earning');
70         $GLOBALS['cache_instance']->finalize();
71 }
72
73 // [EOF]
74 ?>