Wrapper function introduced, description for random refid rewritten:
[mailer.git] / inc / libs / task_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/03/2004 *
4  * ===================                          Last change: 11/19/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : task_functions.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : Special task functions                           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Spezielle task-Funktionen                        *
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, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.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 } // END - if
42
43 //
44 // The advanced overview shows detailed informations to your exchange script:
45 //  - Unconfirmed / locked accounts
46 //  - Mails waiting to be approved
47 //  - Open tasks
48 //  - Your own tasks
49 //  - ...
50 //
51 // @TODO Move all extension-dependent queries into filters
52 function outputAdvancedOverview (&$result_main) {
53         // Init variables/arrays
54         $EXTRAS = '';
55         $OUT    = '';
56         $WHATs  = array();
57         $DESCRs = array();
58         $TITLEs = array();
59
60         // Chheck for new extensions and updates
61         $jobsDone = outputStandardOverview($result_main);
62
63         // Init SQLs
64         initSqls();
65
66         // Init content
67         foreach (
68                 array(
69                         // Member accounts
70                         'confirmed_members','unconfirmed_members','locked_members',
71                         // Tasks
72                         'update_tasks','new_tasks','closed_tasks','your_tasks','deleted_tasks','solved_tasks',
73                         // Mail orders
74                         'pending_mails','canceled_mails','send_emails',
75                         // Bonus mails
76                         'send_bonus_mails',
77                         // Purging
78                         'purged_mails','purged_bonus_mails'
79                 ) as $entry) {
80                 // Set it to zero
81                 $content[$entry] = '0';
82         } // END - foreach
83
84         // Extension updates found
85         $value = countSumTotalData(getCurrentAdminId(), 'task_system', 'id', 'assigned_admin', true, " AND `status`='NEW' AND `task_type`='EXTENSION_UPDATE'");
86
87         if ($value > 0) {
88                 $content['update_tasks'] = '<a href="{%url=modules.php?module=admin&amp;what=list_task&amp;type=updates%}">' . $value . '</a>';
89         } // END - if
90
91         //
92         // First check for all account status seperately
93         //
94         // Confirmed accounts
95         $value = getTotalConfirmedUser();
96
97         if ($value > 0) {
98                 $content['confirmed_members'] = '<a href="{%url=modules.php?module=admin&amp;what=list_user&amp;status=confirmed%}">' . $value . '</a>';
99         } // END - if
100
101         // Unconfirmed accounts
102         $value = getTotalUnconfirmedUser();
103
104         if ($value > 0) {
105                 $content['unconfirmed_members'] = '<a href="{%url=modules.php?module=admin&amp;what=chk_regs%}">' . $value . '</a>';
106         } // END - if
107
108
109         // And locked accounts
110         $value = getTotalLockedUser();
111         if ($value > 0) {
112                 $content['locked_members'] = '<a href="{%url=modules.php?module=admin&amp;what=list_user&amp;status=locked%}">' . $value . '</a>';
113         } // END - if
114
115         //
116         // Unassigned tasks
117         //
118         $value = countSumTotalData(0, 'task_system', 'id', 'assigned_admin', true, " AND `status` != 'DELETED'");
119
120         if ($value > 0) {
121                 $content['new_tasks'] = '<a href="{%url=modules.php?module=admin&amp;what=list_task&amp;type=unassigned%}">' . $value . '</a>';
122         } // END - if
123
124         //
125         // Closed tasks
126         //
127         $value = countSumTotalData('CLOSED', 'task_system', 'id', 'status', true);
128
129         if ($value > 0) {
130                 $content['closed_tasks'] = '<a href="{%url=modules.php?module=admin&amp;what=list_task&amp;type=closed%}">' . $value . '</a>';
131         } // END - if
132
133         //
134         // Deleted tasks
135         //
136         $value = countSumTotalData('DELETED', 'task_system', 'id', 'status', true);
137
138         if ($value > 0) {
139                 $content['deleted_tasks'] = '<a href="{%url=modules.php?module=admin&amp;what=list_task&amp;type=deleted%}">' . $value . '</a>';
140         } // END - if
141
142         //
143         // Solved tasks
144         //
145         $value = countSumTotalData('SOLVED', 'task_system', 'id', 'status', true, sprintf(" AND `assigned_admin`=%s", getCurrentAdminId()));
146
147         if ($value > 0) {
148                 $content['solved_tasks'] = '<a href="{%url=modules.php?module=admin&amp;what=list_task&amp;type=solved%}">' . $value . '</a>';
149         } // END - if
150
151         //
152         // Your tasks
153         //
154         $value = countSumTotalData(getCurrentAdminId(), 'task_system', 'id', 'assigned_admin', true, " AND `status`='NEW' AND task_type != 'EXTENSION_UPDATE'");
155
156         if ($value > 0) {
157                 $content['your_tasks'] = '<a href="{%url=modules.php?module=admin&amp;what=list_task%}">' . $value . '</a>';
158         } // END - if
159
160         //
161         // Mails waiting to be approved
162         //
163         $value = countSumTotalData('ADMIN', 'pool', 'id', 'data_type', true);
164
165         if ($value > 0) {
166                 $content['pending_mails'] = '<a href="{%url=modules.php?module=admin&amp;what=unlock_emails%}">' . $value . '</a>';
167         } // END - if
168
169         //
170         // Unfinished mail orders
171         //
172         $value = countSumTotalData('TEMP', 'pool', 'id', 'data_type', true);
173
174         if ($value > 0) {
175                 $content['canceled_mails'] = '<a href="{%url=modules.php?module=admin&amp;what=email_details%}">' . $value . '</a>';
176         } // END - if
177
178         //
179         // Sent mail orders
180         //
181         $value = countSumTotalData('SEND', 'pool', 'id', 'data_type', true);
182
183         if ($value > 0) {
184                 $content['send_emails'] = '<a href="{%url=modules.php?module=admin&amp;what=email_archiv%}">' . $value . '</a>';
185         } // END - if
186
187         //
188         // Autopurged mails
189         //
190         if (isExtensionActive('autopurge')) {
191                 // Get auto-purged mails
192                 $value = countSumTotalData('DELETED', 'pool', 'id', 'data_type', true);
193
194                 if ($value > 0) {
195                         $content['purged_mails'] = '<a href="{%url=modules.php?module=admin&amp;what=email_details%}">' . $value . '</a>';
196                 } // END - if
197
198                 //
199                 // Autopurged bonus mails
200                 //
201                 if (isExtensionInstalledAndNewer('bonus', '0.1.8')) {
202                         // Get auto-purged bonus mails
203                         $value = countSumTotalData('DELETED', 'bonus', 'id', 'data_type', true);
204
205                         if ($value > 0) {
206                                 $content['purged_bonus_mails'] = '<a href="{%url=modules.php?module=admin&amp;what=email_details%}">' . $value . '</a>';
207                         } // END - if
208                 } elseif (isExtensionActive('bonus')) {
209                         $content['purged_bonus_mails'] = getMaskedMessage('ADMIN_EXTENSION_BONUS_OUTDATED', '0.1.8');
210                 } else {
211                         $content['purged_bonus_mails'] = '<span class="notice">{--ADMIN_EXTENSION_BONUS_404--}</span>';
212                 }
213         } else {
214                 $content['purged_bonus_mails'] = '<span class="notice">{--ADMIN_EXTENSION_AUTOPURGE_404--}</span>';
215                 $content['purged_mails'] = '<span class="notice">{--ADMIN_EXTENSION_AUTOPURGE_404--}</span>';
216         }
217
218         //
219         // Sent bonus mails
220         //
221         if (isExtensionInstalledAndNewer('bonus', '0.1.8')) {
222                 // Get sent bonus mails (but not notifications)
223                 $value = countSumTotalData('SEND', 'bonus', 'id', 'data_type', true, " AND `is_notify`='N'");
224
225                 if ($value > 0) {
226                         $content['send_bonus_mails'] = '<a href="{%url=modules.php?module=admin&amp;what=email_details%}">' . $value . '</a>';
227                 } // END - if
228         } elseif (isExtensionActive('bonus')) {
229                 $content['send_bonus_mails'] = getMaskedMessage('ADMIN_EXTENSION_BONUS_OUTDATED', '0.1.8');
230         } else {
231                 $content['send_bonus_mails'] = '{--ADMIN_EXTENSION_BONUS_404--}';
232         }
233
234         if (isExtensionActive('autopurge')) {
235                 // Start finding them...
236                 $EXCLUDE_LIST = '';
237
238                 // Check for more extensions
239                 // @TODO These can be rewritten to filter
240                 if (isValidUserId(getDefRefid()))              $EXCLUDE_LIST .= ' AND d.`userid` != {?def_refid?}';
241                 if (isExtensionActive('beg'))                  $EXCLUDE_LIST .= ' AND d.`userid` != {?beg_userid?}';
242                 if (isExtensionActive('bonus'))                $EXCLUDE_LIST .= ' AND d.`userid` != {?bonus_userid?}';
243                 if (isExtensionActive('doubler'))              $EXCLUDE_LIST .= ' AND d.`userid` != {?doubler_userid?}';
244                 if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
245                         // Recent ext-holiday found
246                         $EXCLUDE_LIST .= " AND d.`holiday_active`='N'";
247                 } // END - if
248
249                 // Check for all accounts
250                 addSql("SELECT
251         d.userid, d.email, d.last_online
252 FROM
253         `{?_MYSQL_PREFIX?}_user_data` AS d
254 WHERE
255         d.`status`='CONFIRMED' AND
256         d.joined < (UNIX_TIMESTAMP() - {?ap_inactive_since?}) AND
257         d.last_online < (UNIX_TIMESTAMP() - {?ap_inactive_since?}) AND
258         d.ap_notified < (UNIX_TIMESTAMP() - {?ap_inactive_since?})
259 ".$EXCLUDE_LIST."
260 ORDER BY
261         d.userid ASC");
262                 $WHATs[]  = 'list_autopurge';
263                 $DESCRs[] = '{--ADMIN_TASK_INACTIVE_AUTOPURGE--}';
264                 $TITLEs[] = '{--ADMIN_TASK_INACTIVE_AUTOPURGE_TITLE--}';
265         }
266
267         if (isExtensionInstalledAndNewer('sql_patches', '0.3.4')) {
268                 // Check for accounts without referal
269                 addSql("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `refid`=0 ORDER BY `userid` ASC");
270                 $DESCRs[] = '{--ADMIN_TASK_LIST_ACCOUNT_NOREF--}';
271                 $TITLEs[] = '{--ADMIN_TASK_LIST_ACCOUNT_NOREFERAL_TITLE--}';
272                 $WHATs[]  = 'list_user&amp;mode=norefs';
273         }
274
275         if (isExtensionActive('payout')) {
276                 // List new payout requests
277                 addSql("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_payouts` WHERE `status`='NEW' ORDER BY `userid` ASC");
278                 $WHATs[]  = 'list_payouts';
279                 $DESCRs[] = '{--ADMIN_TASK_LIST_PAYOUTS_WAITING--}';
280                 $TITLEs[] = '{--ADMIN_TASK_LIST_PAYOUTS_WAITING_TITLE--}';
281                 addSql("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_payouts` ORDER BY `userid` ASC");
282                 $WHATs[]  = 'list_payouts';
283                 $DESCRs[] = '{--ADMIN_TASK_LIST_PAYOUTS_ALL--}';
284                 $TITLEs[] = '{--ADMIN_TASK_LIST_PAYOUTS_ALL_TITLE--}';
285         }
286
287         if (isExtensionActive('wernis')) {
288                 // List new wernis requests
289                 addSql("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_wernis` ORDER BY `userid` ASC");
290                 $WHATs[]  = 'list_wernis';
291                 $DESCRs[] = '{--ADMIN_TASK_LIST_WERNIS_ALL--}';
292                 $TITLEs[] = '{--ADMIN_TASK_LIST_WERNIS_ALL_TITLE--}';
293         }
294
295         if (isExtensionActive('primera')) {
296                 // List new primera requests
297                 addSql("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_primera` ORDER BY `userid` ASC");
298                 $WHATs[]  = 'list_primera';
299                 $DESCRs[] = '{--ADMIN_TASK_LIST_PRIMERA_ALL--}';
300                 $TITLEs[] = '{--ADMIN_TASK_LIST_PRIMERA_ALL_TITLE--}';
301         }
302
303         if (isExtensionActive('holiday')) {
304                 // List holiday requests
305                 addSql("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_holidays` ORDER BY `userid` ASC");
306                 $WHATs[]  = 'list_holiday';
307                 $DESCRs[] = '{--ADMIN_TASK_LIST_HOLIDAYS--}';
308                 $TITLEs[] = '{--ADMIN_TASK_LIST_HOLIDAYS_TITLE--}';
309         }
310
311         if (isExtensionInstalledAndNewer('bonus', '0.8.7')) {
312                 // List all notifications
313                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `is_notify`='Y' ORDER BY `timestamp` DESC");
314                 $WHATs[]  = 'list_notifications';
315                 $DESCRs[] = '{--ADMIN_TASK_LIST_NOTIFICATIONS--}';
316                 $TITLEs[] = '{--ADMIN_TASK_LIST_NOTIFICATIONS_TITLE--}';
317         } // END - if
318
319         if (isExtensionInstalledAndNewer('bonus', '0.2.3')) {
320                 // Active rallye
321                 if (isExtensionInstalledAndNewer('bonus', '0.6.9')) {
322                         // Add more bonus points here
323                         $USE = '(0';
324                         if (getConfig('bonus_click_yn') == 'Y') $USE .= ' + `turbo_bonus`';
325                         if (getConfig('bonus_login_yn') == 'Y') $USE .= ' + `login_bonus`';
326                         if (getConfig('bonus_order_yn') == 'Y') $USE .= ' + `bonus_order`';
327                         if (getConfig('bonus_stats_yn') == 'Y') $USE .= ' + `bonus_stats`';
328                         if (getConfig('bonus_ref_yn')   == 'Y') $USE .= ' + `bonus_ref`';
329                         $USE .= ')';
330                 } else {
331                         // Old version ???
332                         $USE = 'turbo_bonus';
333                 }
334
335                 // Autopurge installed?
336                 $lastOnline = '';
337                 if ((isExtensionActive('autopurge')) && (getConfig('autopurge_inactive') == 'Y') && (getApInactiveSince() > 0)) {
338                         // Use last online timestamp to keep inactive members away from here
339                         $lastOnline   = ' AND `last_online` >= (UNIX_TIMESTAMP() - {?ap_inactive_since?})';
340                 } // END - if
341
342                 addSql("SELECT
343         " . $USE . " AS points
344 FROM
345         `{?_MYSQL_PREFIX?}_user_data`
346 WHERE
347         `status`='CONFIRMED' AND
348         " . $USE . " > 0
349         " . $lastOnline . "
350 ORDER BY
351         `points` DESC,
352         `userid` ASC");
353                 $WHATs[]  = 'list_bonus';
354                 $DESCRs[] = '{--ADMIN_TASK_LIST_BONUS--}';
355                 $TITLEs[] = '{--ADMIN_TASK_LIST_BONUS_TITLE--}';
356         }
357
358         if (isExtensionInstalledAndNewer('beg', '0.1.2')) {
359                 // Begging rallye
360
361                 // Autopurge installed?
362                 $lastOnline = '';
363                 if ((isExtensionActive('autopurge')) && (getConfig('autopurge_inactive') == 'Y') && (getApInactiveSince() > 0)) {
364                         // Use last online timestamp to keep inactive members away from here
365                         $lastOnline   = ' AND `last_online` >= (UNIX_TIMESTAMP() - {?ap_inactive_since?})';
366                 } // END - if
367
368                 addSql("SELECT
369         `userid`
370 FROM
371         `{?_MYSQL_PREFIX?}_user_data`
372 WHERE
373         `status`='CONFIRMED' AND
374         `beg_points` > 0
375         ".$lastOnline."
376 ORDER BY
377         `beg_points` DESC,
378         `userid` ASC");
379                 $WHATs[]  = 'list_beg';
380                 $DESCRs[] = '{--ADMIN_TASK_LIST_BEG--}';
381                 $TITLEs[] = '{--ADMIN_TASK_LIST_BEG_TITLE--}';
382         } // END - if
383
384         if (isExtensionActive('doubler')) {
385                 // List waiting payouts
386                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_doubler` WHERE `completed`='N' ORDER BY `id` ASC");
387                 $WHATs[]  = 'list_doubler&amp;mode=waiting&amp;select=all';
388                 $DESCRs[] = '{--ADMIN_TASK_LIST_DOUBLER_WAITING--}';
389                 $TITLEs[] = '{--ADMIN_TASK_LIST_DOUBLER_WAITING_TITLE--}';
390                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_doubler` ORDER BY `id` ASC");
391                 $WHATs[]  = 'list_doubler';
392                 $DESCRs[] = '{--ADMIN_TASK_LIST_DOUBLER_ALL--}';
393                 $TITLEs[] = '{--ADMIN_TASK_LIST_DOUBLER_ALL_TITLE--}';
394         } // END - if
395
396         //
397         // All referal banner
398         //
399         addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY `id` ASC");
400         $WHATs[] = 'refbanner';
401         $DESCRs[] = '{--ADMIN_TASK_LIST_REFBANNER_ALL--}';
402         $TITLEs[] = '{--ADMIN_TASK_LIST_REFBANNER_ALL_TITLE--}';
403
404         //
405         // All activated referal banner
406         //
407         addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `visible`='Y' ORDER BY `id` ASC");
408         $WHATs[] = 'refbanner';
409         $DESCRs[] = '{--ADMIN_TASK_LIST_REFBANNER_ACTIVE--}';
410         $TITLEs[] = '{--ADMIN_TASK_LIST_REFBANNER_ACTIVE_TITLE--}';
411
412         //
413         // All extensions
414         //
415         addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_extensions` ORDER BY `id` ASC");
416         $WHATs[] = 'extensions';
417         $DESCRs[] = '{--ADMIN_TASK_LIST_EXTENSIONS_ALL--}';
418         $TITLEs[] = '{--ADMIN_TASK_LIST_EXTENSIONS_ALL_TITLE--}';
419
420         //
421         // All activated extensions
422         //
423         addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `ext_active`='Y' ORDER BY `id` ASC");
424         $WHATs[]  = 'extensions&amp;active=Y';
425         $DESCRs[] = '{--ADMIN_TASK_LIST_EXTENSIONS_ACTIVE--}';
426         $TITLEs[] = '{--ADMIN_TASK_LIST_EXTENSIONS_ACTIVE_TITLE--}';
427
428         if (isExtensionActive('engine')) {
429                 // List all export accounts
430                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_engine_accounts` ORDER BY `id` ASC");
431                 $WHATs[]  = 'list_engine';
432                 $DESCRs[] = '{--ADMIN_TASK_LIST_ENGINE--}';
433                 $TITLEs[] = '{--ADMIN_TASK_LIST_ENGINE_TITLE--}';
434
435                 // List all pending accounts
436                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_engine_accounts` WHERE `status`='UNCONFIRMED' ORDER BY `id` ASC");
437                 $WHATs[]  = 'unlock_engine';
438                 $DESCRs[] = '{--ADMIN_TASK_UNLOCK_ENGINE--}';
439                 $TITLEs[] = '{--ADMIN_TASK_UNLOCK_ENGINE_TITLE--}';
440
441                 // List all safes
442                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_engine_safe` ORDER BY `id` ASC");
443                 $WHATs[]  = 'list_engine&amp;mode=safe';
444                 $DESCRs[] = '{--ADMIN_TASK_LIST_ENGINE_SAFES--}';
445                 $TITLEs[] = '{--ADMIN_TASK_LIST_ENGINE_SAFES_TITLE--}';
446
447                 // List all export URLs
448                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_engine_urls` ORDER BY `id` ASC");
449                 $WHATs[]  = 'engine_urls';
450                 $DESCRs[] = '{--ADMIN_TASK_LIST_ENGINE_URLS--}';
451                 $TITLEs[] = '{--ADMIN_TASK_LIST_ENGINE_URLS_TITLE--}';
452         } // END - if
453
454         if (isExtensionActive('sponsor')) {
455                 // List all sponsors
456                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` ORDER BY `id` ASC");
457                 $WHATs[]  = 'list_sponsor';
458                 $DESCRs[] = '{--ADMIN_TASK_LIST_SPONSOR--}';
459                 $TITLEs[] = '{--ADMIN_TASK_LIST_SPONSOR_TITLE--}';
460
461                 // List confirmed sponsor accounts
462                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `status`='CONFIRMED' ORDER BY `id` ASC");
463                 $WHATs[]  = 'list_sponsor';
464                 $DESCRs[] = '{--ADMIN_TASK_LIST_SPONSOR_CONFIRMED--}';
465                 $TITLEs[] = '{--ADMIN_TASK_LIST_SPONSOR_CONFIRMED_TITLE--}';
466
467                 // List unconfirmed sponsor accounts
468                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `status`='UNCONFIRMED' ORDER BY `id` ASC");
469                 $WHATs[]  = 'list_sponsor';
470                 $DESCRs[] = '{--ADMIN_TASK_LIST_SPONSOR_UNCONFIRMED--}';
471                 $TITLEs[] = '{--ADMIN_TASK_LIST_SPONSOR_UNCONFIRMED_TITLE--}';
472
473                 // List locked sponsor accounts
474                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `status`='LOCKED' ORDER BY `id` ASC");
475                 $WHATs[]  = 'list_sponsor';
476                 $DESCRs[] = '{--ADMIN_TASK_LIST_SPONSOR_LOCKED--}';
477                 $TITLEs[] = '{--ADMIN_TASK_LIST_SPONSOR_LOCKED_TITLE--}';
478
479                 // List waiting sponsor accounts to be approved
480                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `status`='PENDING' ORDER BY `id` ASC");
481                 $WHATs[]  = 'unlock_sponsor';
482                 $DESCRs[] = '{--ADMIN_TASK_LIST_SPONSOR_PENDING--}';
483                 $TITLEs[] = '{--ADMIN_TASK_LIST_SPONSOR_PENDING_TITLE--}';
484
485                 // Waiting payments
486                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_orders` WHERE `pay_status`='PENDING' ORDER BY `id` ASC");
487                 $WHATs[]  = 'list_sponsor_pays';
488                 $DESCRs[] = '{--ADMIN_TASK_LIST_SPONSOR_ORDERS--}';
489                 $TITLEs[] = '{--ADMIN_TASK_LIST_SPONSOR_ORDERS_TITLE--}';
490         } // END - if
491
492         if (isExtensionActive('country')) {
493                 // List country codes
494                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_countries` ORDER BY `id` ASC");
495                 $WHATs[]  = 'list_country';
496                 $DESCRs[] = '{--ADMIN_TASK_LIST_COUNTRY--}';
497                 $TITLEs[] = '{--ADMIN_TASK_LIST_COUNTRY_TITLE--}';
498         } // END - if
499
500         if (isExtensionActive('theme')) {
501                 // List all themes
502                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_themes` ORDER BY `id` ASC");
503                 $WHATs[]  = 'theme_edit';
504                 $DESCRs[] = '{--ADMIN_TASK_LIST_THEME_ALL--}';
505                 $TITLEs[] = '{--ADMIN_TASK_LIST_THEME_ALL_TITLE--}';
506
507                 // List active themes
508                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_themes` WHERE `theme_active`='Y' ORDER BY `id` ASC");
509                 $WHATs[]  = 'theme_edit';
510                 $DESCRs[] = '{--ADMIN_TASK_LIST_THEME_ACTIVE--}';
511                 $TITLEs[] = '{--ADMIN_TASK_LIST_THEME_ACTIVE_TITLE--}';
512         } // END - if
513
514         if (isExtensionActive('admins')) {
515                 // List all administrator logins
516                 addSql("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins` ORDER BY `id` ASC");
517                 $WHATs[]  = 'admins_edit';
518                 $DESCRs[] = '{--ADMIN_TASK_LIST_ADMINS_ALL--}';
519                 $TITLEs[] = '{--ADMIN_TASK_LIST_ADMINS_ALL_TITLE--}';
520         } // END - if
521
522         if (isExtensionActive('surfbar')) {
523                 // List all URLs in surfbar
524                 addSql("SELECT `url_id` FROM `{?_MYSQL_PREFIX?}_surfbar_urls` ORDER BY `url_id` ASC");
525                 $WHATs[]  = 'list_surfbar_urls';
526                 $DESCRs[] = '{--ADMIN_TASK_LIST_SURFBAR_URLS_ALL--}';
527                 $TITLEs[] = '{--ADMIN_TASK_LIST_SURFBAR_URLS_ALL_TITLE--}';
528
529                 // List all pending URLs in surfbar
530                 addSql("SELECT `url_id` FROM `{?_MYSQL_PREFIX?}_surfbar_urls` WHERE `url_status`='PENDING' ORDER BY `url_id` ASC");
531                 $WHATs[]  = 'unlock_surfbar_urls';
532                 $DESCRs[] = '{--ADMIN_TASK_LIST_SURFBAR_URLS_PENDING--}';
533                 $TITLEs[] = '{--ADMIN_TASK_LIST_SURFBAR_URLS_PENDING_TITLE--}';
534         } // END - if
535
536         // Generate extra overview rows
537         $EXTRAS .= createExtraTaskRows($WHATs, $DESCRs, $TITLEs);
538
539         // If empty just keep a forced-space left for CSS issues
540         if (empty($EXTRAS)) $EXTRAS = '&nbsp;';
541
542         // Add compiled string to constant for final template
543         $content['extra_table'] = $EXTRAS;
544
545         // Simply load the template... :-)
546         loadTemplate('admin_overview_task', false, $content);
547 }
548
549 //
550 function createExtraTaskRows ($WHATs, $DESCRs, $TITLEs) {
551         // Init variables
552         $OUT = '';
553
554         // Sadly this cannot be rewritten to a filter... :(
555         foreach (getSqls() as $sqls) {
556                 // New format...
557                 foreach ($sqls as $key => $sql) {
558                         // Run SQL command, get line numbers and free memory
559                         $result = SQL_QUERY($sql, __FUNCTION__, __LINE__);
560
561                         // Prepare array for output
562                         $content = array(
563                                 'row_descr' => $DESCRs[$key],
564                                 'bottom'    => '',
565                         );
566
567                         // Rewrite CSS class if not last entry is reached
568                         if ($key < (count($sqls) - 1)) $content['bottom'] = 'bottom';
569
570                         if ((SQL_NUMROWS($result) > 0) && (!empty($WHATs[$key]))) {
571                                 if (empty($TITLEs[$key])) {
572                                         $TITLEs[$key] = '{--ADMIN_TASK_UNKNOWN_LIST_TITLE--}';
573                                 } // END - if
574                                 $content['row_link'] = '<a href="{%url=modules.php?module=admin&amp;what=' . $WHATs[$key] . '%}" title="' . $TITLEs[$key] . '">' . SQL_NUMROWS($result) . '</a>';
575                         } else {
576                                 $content['row_link'] = '0';
577                         }
578
579                         // Free result
580                         SQL_FREERESULT($result);
581
582                         // And insert the final string into extras template
583                         $OUT .= loadTemplate('admin_overview_task_rows', true, $content);
584                 } // END- foreach
585         } // END - foreach
586
587         // Return output in the template
588         return loadTemplate('admin_overview_task_extras', true, $OUT);
589 }
590
591 //
592 ?>