OSDN Git Service

FIX: グローバル設定において、管理画面用/ブックマークレット用スキン選択肢に「サイトの設定を使う」が含まれるバグ
[nucleus-jp/nucleus-next.git] / nucleus / libs / AdminActions.php
1 <?php
2 if ( !class_exists('BaseActions') )
3 {
4         include $DIR_LIBS . 'BaseActions.php';
5 }
6
7
8 class AdminActions extends BaseActions
9 {
10         private $skintype;
11         
12         /**
13          * AdminActions::$default_actions
14          * list of whole action names with which this class can deal
15          */
16         static private $default_actions = array(
17                 'actionurl',
18                 'addtickettourl',
19                 'adminurl',
20                 'codename',
21                 'customhelplink',
22                 'date',
23                 'extrahead',
24                 'headmessage',
25                 'helplink',
26                 'member',
27                 'newestcompare',
28                 'pagehead',
29                 'pagefoot',
30                 'qmenuaddselect',
31                 'quickmenu',
32                 'sitevar',
33                 'sprinttext',
34                 'ticket',
35                 'version',
36                 'versioncheckurl'
37         );
38         
39         /**
40          * AdminActions::$skin_type_friendly_names
41          * friendly name for wrapped page types
42          */
43         static private $default_skin_types = array(
44                 'actionlog'                             => _ADM_SKPRT_ACTIONLOG,
45                 'activate'                              => _ADM_SKPRT_ACTIVATE,
46                 'activatesetpwd'                => _ADM_SKPRT_ACTIVATESETPWD,
47                 'addnewlog'                             => _ADM_SKPRT_ADDNEWLOG,
48                 'adminerrorpage'                => _ADM_SKPRT_ADMINERRORPAGE,
49                 'adminskindelete'               => _ADM_SKPRT_ADMINSKINDELETE,
50                 'adminskinedit'                 => _ADM_SKPRT_ADMINSKINEDIT,
51                 'adminskinedittype'             => _ADM_SKPRT_ADMINSKINEDITTYPE,
52                 'adminskiniedoimport'   => _ADM_SKPRT_ADMINSKINIEDOIMPORT,
53                 'adminskinieimport'             => _ADM_SKPRT_ADMINSKINIEIMPORT,
54                 'adminskinieoverview'   => _ADM_SKPRT_ADMINSKINIEOVERVIEW,
55                 'adminskinoverview'             => _ADM_SKPRT_ADMINSKINOVERVIEW,
56                 'adminskinremovetype'   => _ADM_SKPRT_ADMINSKINREMOVETYPE,
57                 'admintemplatedelete'   => _ADM_SKPRT_ADMINTEMPLATEDELETE,
58                 'admintemplateedit'             => _ADM_SKPRT_ADMINTEMPLATEEDIT,
59                 'admintemplateoverview' => _ADM_SKPRT_ADMINTEMPLATEOVERVIEW,
60                 'backupoverview'                => _ADM_SKPRT_BACKUPOVERVIEW,
61                 'backuprestore'                 => _ADM_SKPRT_BACKUPRESTORE,
62                 'banlist'                               => _ADM_SKPRT_BANLIST,
63                 'banlistdelete'                 => _ADM_SKPRT_BANLISTDELETE,
64                 'banlistdeleteconfirm'  => _ADM_SKPRT_BANLISTDELETECONFIRM,
65                 'banlistnew'                    => _ADM_SKPRT_BANLISTNEW,
66                 'batchcategory'                 => _ADM_SKPRT_BATCHCATEGORY,
67                 'batchcomment'                  => _ADM_SKPRT_BATCHCOMMENT,
68                 'batchdelete'                   => _ADM_SKPRT_BATCHDELETE,
69                 'batchitem'                             => _ADM_SKPRT_BATCHITEM,
70                 'batchmember'                   => _ADM_SKPRT_BATCHMEMBER,
71                 'batchmove'                             => _ADM_SKPRT_BATCHMOVE,
72                 'batchmovecat'                  => _ADM_SKPRT_BATCHMOVECAT,
73                 'batchteam'                             => _ADM_SKPRT_BATCHTEAM,
74                 'blogcommentlist'               => _ADM_SKPRT_BLOGCOMMENTLIST,
75                 'blogsettings'                  => _ADM_SKPRT_BLOGSETTINGS,
76                 'bookmarklet'                   => _ADM_SKPRT_BOOKMARKLET,
77                 'browseowncomments'             => _ADM_SKPRT_BROWSEOWNCOMMENTS,
78                 'browseownitems'                => _ADM_SKPRT_BROWSEOWNITEMS,
79                 'categorydelete'                => _ADM_SKPRT_CATEGORYDELETE,
80                 'categoryedit'                  => _ADM_SKPRT_CATEGORYEDIT,
81                 'commentdelete'                 => _ADM_SKPRT_COMMENTDELETE,
82                 'commentedit'                   => _ADM_SKPRT_COMMENTEDIT,
83                 'createitem'                    => _ADM_SKPRT_CREATEITEM,
84                 'createnewlog'                  => _ADM_SKPRT_CREATENEWLOG,
85                 'createaccountinput'    => _ADM_SKPRT_CREATEACCOUNTINPUT,                       /* not yet */
86                 'createaccountsuccess'  => _ADM_SKPRT_CREATEACCOUNTSUCCESS,                     /* not yet */
87                 'createaccountdisable'  => _ADM_SKPRT_CREATEACCOUNTDISALLOWED,          /* not yet */
88                 'deleteblog'                    => _ADM_SKPRT_DELETEBLOG,
89                 'editmembersettings'    => _ADM_SKPRT_EDITMEMBERSETTINGS,
90                 'forgotpassword'                => _ADM_SKPRT_FORGOTPASSWORD,                           /* not yet */
91                 'itemcommentlist'               => _ADM_SKPRT_ITEMCOMMENTLIST,
92                 'itemdelete'                    => _ADM_SKPRT_ITEMDELETE,
93                 'itemedit'                              => _ADM_SKPRT_ITEMEDIT,
94                 'itemlist'                              => _ADM_SKPRT_ITEMLIST,
95                 'itemmove'                              => _ADM_SKPRT_ITEMMOVE,
96                 'login'                                 => FALSE,       //missing
97                 'manage'                                => _ADM_SKPRT_MANAGE,
98                 'manageteam'                    => _ADM_SKPRT_MANAGETEAM,
99                 'memberdelete'                  => _ADM_SKPRT_MEMBERDELETE,
100                 'memberedit'                    => FALSE,       //missing
101                 'overview'                              => _ADM_SKPRT_OVERVIEW,
102                 'pagefoot'                              => _ADM_SKPRT_PAGEFOOT,
103                 'pagehead'                              => _ADM_SKPRT_PAGEHEAD,
104                 'plugindelete'                  => _ADM_SKPRT_PLUGINDELETE,
105                 'pluginhelp'                    => _ADM_SKPRT_PLUGINHELP,
106                 'pluginlist'                    => _ADM_SKPRT_PLUGINLIST,
107                 'pluginoptions'                 => _ADM_SKPRT_PLUGINOPTIONS,
108                 'settingsedit'                  => _ADM_SKPRT_SETTINGSEDIT,
109                 'showlogin'                             => _ADM_SKPRT_SHOWLOGIN,
110                 'skindelete'                    => _ADM_SKPRT_SKINDELETE,
111                 'skinedit'                              => _ADM_SKPRT_SKINEDIT,
112                 'skinedittype'                  => _ADM_SKPRT_SKINEDITTYPE,
113                 'skiniedoimport'                => _ADM_SKPRT_SKINIEDOIMPORT,
114                 'skinieimport'                  => _ADM_SKPRT_SKINIEIMPORT,
115                 'skinieoverview'                => _ADM_SKPRT_SKINIEOVERVIEW,
116                 'skinoverview'                  => _ADM_SKPRT_SKINOVERVIEW,
117                 'skinremovetype'                => _ADM_SKPRT_SKINREMOVETYPE,
118                 'systemoverview'                => _ADM_SKPRT_SYSTEMOVERVIEW,
119                 'teamdelete'                    => _ADM_SKPRT_TEAMDELETE,
120                 'templatedelete'                => _ADM_SKPRT_TEMPLATEDELETE,
121                 'templateedit'                  => _ADM_SKPRT_TEMPLATEEDIT,
122                 'templateoverview'              => _ADM_SKPRT_TEMPLATEOVERVIEW,
123                 'usermanagement'                => _ADM_SKPRT_USERMANAGEMENT,
124         );
125         
126         /**
127          * AdminActions::getAvailableSkinTypes()
128          *
129          * @static
130          * @param       void
131          * @return      array   list of friendly names for page actions
132          */
133         static public function getAvailableSkinTypes()
134         {
135                 return self::$default_skin_types;
136         }
137         
138         /**
139          * AdminActions::getDefaultTypes()
140          *
141          * @static
142          * @param       void
143          * @return      array   list of friendly names for page actions
144          */
145         static public function getDefaultTypes()
146         {
147                 return self::$default_skin_types;
148         }
149         
150         /**
151          * AdminActions::__construct()
152          * Constructor for a new Actions object
153          *
154          * @param       string  $type
155          * @return      void
156          */
157         public function __construct($type)
158         {
159                 // call constructor of superclass first
160                 parent::__construct();
161                 
162                 /* alias */
163                 if ( $type == 'admntemplateoverview' )
164                 {
165                         $this->skintype = 'admintemplateoverview';
166                 }
167                 else
168                 {
169                         $this->skintype = $type;
170                 }
171         
172                 return;
173         }
174         
175         /**
176          * AdminActions::getAvailableActions()
177          *
178          * @param       void
179          * @return      array   allowed actions for the page type
180          */
181         public function getAvailableActions()
182         {
183                 $extra_actions = array();
184                 
185                 switch ( $this->skintype )
186                 {
187                         case 'actionlog':
188                                 $extra_actions = array(
189                                 'actionloglist',
190                                 );
191                                 break;
192                         case 'activate':
193                                 $extra_actions = array(
194                                 'activationmessage',
195                                 'eventformextra',
196                                 );
197                                 break;
198                         case 'activatesetpwd':
199                                 $extra_actions = array(
200                                 /* nothing special */
201                                 );
202                                 break;
203                         case 'addnewlog':
204                                 $extra_actions = array(
205                                 'getblogsetting',
206                                 'blogsetting',
207                                 'requestblogid',
208                                 );
209                                 break;
210                         case 'adminerrorpage':
211                                 $extra_actions = array(
212                                 /* nothing special */
213                                 );
214                                 break;
215                         case 'adminskindelete':
216                                 $extra_actions = array(
217                                 'editskintype',
218                                 );
219                                 break;
220                         case 'adminskinedit':
221                                 $extra_actions = array(
222                                 'editskin',
223                                 'normalskinlist',
224                                 'specialskinlist',
225                                 );
226                                 break;
227                         case 'adminskinedittype':
228                                 $extra_actions = array(
229                                 'editskintype',
230                                 'skintypehelp',
231                                 'allowedskinactions',
232                                 'skineditallowedlist',
233                                 );
234                                 break;
235                         case 'adminskiniedoimport':
236                                 $extra_actions = array(
237                                 'importskininfo',
238                                 );
239                                 break;
240                         case 'adminskinieimport':
241                                 $extra_actions = array(
242                                 'importskininfo',
243                                 );
244                                 break;
245                         case 'adminskinieoverview':
246                                 $extra_actions = array(
247                                 'selectlocalskinfiles',
248                                 'skinielist',
249                                 );
250                                 break;
251                         case 'adminskinoverview':
252                                 $extra_actions = array(
253                                 'skinoverview',
254                                 );
255                                 break;
256                         case 'adminskinremovetype':
257                                 $extra_actions = array(
258                                 'editskintype',
259                                 );
260                                 break;
261                         case 'admintemplatedelete':
262                                 $extra_actions = array(
263                                 'editadmintemplateinfo',
264                                 );
265                         case 'admintemplateedit':
266                                 $extra_actions = array(
267                                 'edittemplateinfo',
268                                 );
269                                 break;
270                         case 'admintemplateoverview':
271                                 $extra_actions = array(
272                                 'templateoverview',
273                                 );
274                                 break;
275                         case 'backupoverview':
276                                 $extra_actions = array(
277                                 /* nothing special */
278                                 );
279                                 break;
280                         case 'backuprestore':
281                                 $extra_actions = array(
282                                 /* nothing special */
283                                 );
284                                 break;
285                         case 'banlist':
286                                 $extra_actions = array(
287                                 'adminbloglink',
288                                 'adminbanlist',
289                                 'requestblogid',
290                                 );
291                                 break;
292                         case 'banlistdelete':
293                                 $extra_actions = array(
294                                 'requestiprange',
295                                 'requestblogid',
296                                 );
297                                 break;
298                         case 'banlistdeleteconfirm':
299                                 $extra_actions = array(
300                                 'banlistdeletedlist',
301                                 'requestblogid',
302                                 );
303                                 break;
304                         case 'banlistnew':
305                                 $extra_actions = array(
306                                 'iprangeinput',
307                                 'requestblogid',
308                                 'blogsetting',
309                                 );
310                                 break;
311                         case 'batchcategory':
312                                 $extra_actions = array(
313                                 'adminbatchaction',
314                                 'adminbatchlist',
315                                 );
316                                 break;
317                         case 'batchcomment':
318                                 $extra_actions = array(
319                                 'adminbatchaction',
320                                 'adminbatchlist',
321                                 );
322                                 break;
323                         case 'batchdelete':
324                                 $extra_actions = array(
325                                 'batchdeletetype',
326                                 'batchdeletelist',
327                                 );
328                                 break;
329                         case 'batchitem':
330                                 $extra_actions = array(
331                                 'adminbatchaction',
332                                 'adminbatchlist',
333                                 );
334                                 break;
335                         case 'batchmember':
336                                 $extra_actions = array(
337                                 'adminbatchaction',
338                                 'adminbatchlist',
339                                 );
340                                 break;
341                         case 'batchmove':
342                                 $extra_actions = array(
343                                 'batchmovetitle',
344                                 'batchmovetype',
345                                 'batchmovelist',
346                                 'movedistselect',
347                                 'batchmovebtn',
348                                 );
349                                 break;
350                         case 'batchmovecat':
351                                 $extra_actions = array(
352                                 'batchmovetitle',
353                                 'batchmovetype',
354                                 'batchmovelist',
355                                 'movedistselect',
356                                 'batchmovebtn',
357                                 );
358                                 break;
359                         case 'batchteam':
360                                 $extra_actions = array(
361                                 'requestblogid',
362                                 'adminbatchaction',
363                                 'adminbatchlist',
364                                 );
365                                 break;
366                         case 'blogcommentlist':
367                                 $extra_actions = array(
368                                 'adminbloglink',
369                                 'commentnavlist',
370                                 'adminbatchlist',
371                                 );
372                                 break;
373                         case 'blogsettings':
374                                 $extra_actions = array(
375                                 'adminbloglink',
376                                 'blogcatlist',
377                                 'blognotifysetting',
378                                 'blogsetting',
379                                 'blogsettingyesno',
380                                 'blogteammembers',
381                                 'blogtime',
382                                 'defcatselect',
383                                 'defskinselect',
384                                 'pluginextras',
385                                 'pluginoptions',
386                                 'requestblogid',
387                                 );
388                                 break;
389                         case 'bookmarklet':
390                                 $extra_actions = array(
391                                 'bookmarkletadmin',
392                                 );
393                                 break;
394                         case 'browseowncomments':
395                                 $extra_actions = array(
396                                 'commentnavlist',
397                                 );
398                                 break;
399                         case 'browseownitems':
400                                 $extra_actions = array(
401                                 'itemnavlist',
402                                 );
403                                 break;
404                         case 'categorydelete':
405                                 $extra_actions = array(
406                                 'categorysetting',
407                                 'requestblogid',
408                                 );
409                                 break;
410                         case 'categoryedit':
411                                 $extra_actions = array(
412                                 'requestblogid',
413                                 'categorysetting',
414                                 'editdesturl',
415                                 'pluginoptions'
416                                 );
417                                 break;
418                         case 'commentdelete':
419                                 $extra_actions = array(
420                                 'deletecomment',
421                                 );
422                                 break;
423                         case 'commentedit':
424                                 $extra_actions = array(
425                                 'editcomment',
426                                 );
427                                 break;
428                         case 'createaccountinput':
429                                 $extra_actions = array(
430                                 'contents',
431                                 'pluginextras',
432                                 'eventformextra',
433                                 );\r
434                                 break;
435                         case 'createaccountsuccess':
436                                 $extra_actions = array(\r
437                                 'contents',
438                                 );\r
439                                 break;
440                         case 'createaccountdisable':
441                                 $extra_actions = array(
442                                 /* nothing special */
443                                 );\r
444                                 break;
445                         case 'createitem':
446                                 $extra_actions = array(
447                                 'adminbloglink',
448                                 'blogid',
449                                 'contents',
450                                 'categories',
451                                 'currenttime',
452                                 'init',
453                                 'pluginoptions',
454                                 'pluginextras'
455                                 );
456                                 break;
457                         case 'createnewlog':
458                                 $extra_actions = array(
459                                 'defskinselect',
460                                 'blogtime',
461                                 );
462                                 break;
463                         case 'deleteblog':
464                                 $extra_actions = array(
465                                 'blogsetting',
466                                 'requestblogid',
467                                 );
468                                 break;
469                         case 'editmembersettings':
470                                 $extra_actions = array(
471                                 'defskinselect',
472                                 'editmember',
473                                 'localeselectoptions',
474                                 'pluginoptions',
475                                 'defadminskinselect',
476                                 'defbookmarkletselect',
477                                 );
478                                 break;
479                         case 'forgotpassword':
480                                 $extra_actions = array(
481                                 /* nothing special */
482                                 );
483                                 break;
484                         case 'itemcommentlist':
485                                 $extra_actions = array(
486                                 'requestblogid',
487                                 'commentnavlist',
488                                 );
489                                 break;
490                         case 'itemdelete':
491                                 $extra_actions = array(
492                                 'deleteitemtitle',
493                                 'deleteitembody',
494                                 'deleteitemid',
495                                 );
496                                 break;
497                         case 'itemedit':
498                                 $extra_actions = array(
499                                 'init',
500                                 'contents',
501                                 'checkedonval',
502                                 'categories',
503                                 'currenttime',
504                                 'itemtime',
505                                 'pluginoptions',
506                                 'pluginextras'
507                                 );
508                                 break;
509                         case 'itemlist':
510                                 $extra_actions = array(
511                                 'adminbloglink',
512                                 'ilistaddnew',
513                                 'itemnavlist',
514                                 );
515                                 break;
516                         case 'itemmove':
517                                 $extra_actions = array(
518                                 'moveitemid',
519                                 'movedistselect',
520                                 );
521                                 break;
522                         case 'manage':
523                                 $extra_actions = array(
524                                 /* nothing special */
525                                 );
526                                 break;
527                         case 'manageteam':
528                                 $extra_actions = array(
529                                 'requestblogid',
530                                 'blogsetting',
531                                 'blogteamlist',
532                                 'newmemberselect',
533                                 'inputyesno',
534                                 );
535                                 break;
536                         case 'memberdelete':
537                                 $extra_actions = array(
538                                 'editmember',
539                                 );
540                                 break;
541                         case 'overview':
542                                 $extra_actions = array(
543                                 'yrbloglist',
544                                 );
545                                 break;
546                         case 'plugindelete':
547                                 $extra_actions = array(
548                                 'editpluginfo',
549                                 );
550                                 break;
551                         case 'pluginhelp':
552                                 $extra_actions = array(
553                                 'helpplugname',
554                                 'pluginhelp',
555                                 );
556                                 break;
557                         case 'pluginlist':
558                                 $extra_actions = array(
559                                 'pluginlistlist',
560                                 'newpluginlist',
561                                 );
562                                 break;
563                         case 'pluginoptions':
564                                 $extra_actions = array(
565                                 'editpluginfo',
566                                 'editplugoptionslist',
567                                 );
568                                 break;
569                         case 'settingsedit':
570                                 $extra_actions = array(
571                                 'defblogselect',
572                                 'defskinselect',
573                                 'configsettingsedit',
574                                 'configsettingsyesno',
575                                 'outputspecialdirs',
576                                 'jstoolbaroptions',
577                                 'localeselectoptions',
578                                 'mediadirwarning',
579                                 'pluginextras',
580                                 'defadminskinselect',
581                                 'defbookmarkletselect',
582                                 );
583                                 break;
584                         case 'showlogin':
585                                 $extra_actions = array(
586                                 'passrequestvars',
587                                 );
588                                 break;
589                         case 'skindelete':
590                                 $extra_actions = array(
591                                 'editskintype',
592                                 );
593                                 break;
594                         case 'skinedit':
595                                 $extra_actions = array(
596                                 'editskin',
597                                 'normalskinlist',
598                                 'specialskinlist'
599                                 );
600                                 break;
601                         case 'skinedittype':
602                                 $extra_actions = array(
603                                 'editskintype',
604                                 'skintypehelp',
605                                 'allowedskinactions',
606                                 'skineditallowedlist'
607                                 );
608                                 break;
609                         case 'skiniedoimport':
610                                 $extra_actions = array(
611                                 'importskininfo',
612                                 );
613                                 break;
614                         case 'skinieimport':
615                                 $extra_actions = array(
616                                 'importskininfo',
617                                 );
618                                 break;
619                         case 'skinieoverview':
620                                 $extra_actions = array(
621                                 'selectlocalskinfiles',
622                                 'skinielist',
623                                 );
624                                 break;
625                         case 'skinoverview':
626                                 $extra_actions = array(
627                                 'skinoverview',
628                                 );
629                                 break;
630                         case 'skinremovetype':
631                                 $extra_actions = array(
632                                 'editskintype',
633                                 );
634                                 break;
635                         case 'systemoverview':
636                                 $extra_actions = array(
637                                 'systemsettings',
638                                 );
639                                 break;
640                         case 'teamdelete':
641                                 $extra_actions = array(
642                                 'editmember',
643                                 'blogsetting',
644                                 'requestblogid',
645                                 );
646                                 break;
647                         case 'templatedelete':
648                                 $extra_actions = array(
649                                 'edittemplateinfo',
650                                 );
651                                 break;
652                         case 'templateedit':
653                                 $extra_actions = array(
654                                 'edittemplateinfo',
655                                 );
656                                 break;
657                         case 'templateoverview':
658                                 $extra_actions = array(
659                                 'templateoverview',
660                                 );
661                                 break;
662                         case 'usermanagement':
663                                 $extra_actions = array(
664                                 'editmemberlist',
665                                 'inputyesno',
666                                 );
667                                 break;
668                         case 'importAdmin':
669                                 $extra_actions = array(
670                                 'charset',
671                                 'adminurl',
672                                 'extrahead',
673                                 'member',
674                                 'versioncheckurl',
675                                 'version',
676                                 'codename',
677                                 'newestcompare',
678                                 'selectlocalskinfiles',
679                                 'skinielist',
680                                 );
681                                 break;
682                         default:
683                                 break;
684                 }
685                 
686                 $defined_actions = array_merge(self::$default_actions, $extra_actions);
687                 
688                 return array_merge($defined_actions, parent::getAvailableActions());
689         }
690         
691         /**
692          * AdminActions::parse_actionloglist()
693          * Parse skinvar actionloglist
694          *
695          * @param       string  $template_name  name of template to use
696          * @return      void
697          */
698         public function parse_actionloglist($template_name = '')
699         {
700                 $query = "SELECT * FROM %s ORDER BY timestamp DESC;";
701                 $query = sprintf($query, sql_table('actionlog'));
702                 
703                 $resource = DB::getResult($query);
704                 if ( $resource->rowCount() > 0 )
705                 {
706                         $template['content'] = 'actionlist';
707                         $this->parser->parse(showlist($resource, 'table', $template, $template_name));
708                 }
709                 else
710                 {
711                         /* TODO: nothing to be shown */
712                 }
713                 return;
714         }
715         
716         /**
717          * AdminActions::parse_activationmessage()
718          * Parse skinvar activationmessage
719          *
720          * @param       string  $type                   type of message
721          * @param       string  $template_name  name of template to use
722          * @return      void
723          */
724         public function parse_activationmessage($type, $template_name = '')
725         {
726                 global $CONF, $manager;
727                 
728                 $template = array();
729                 
730                 if ( !empty($template_name))
731                 {
732                         $template =& $manager->getTemplate($template_name);
733                 }
734                 
735                 $key = postVar('ackey');
736                 if ( !$key )
737                 {
738                         Admin::error(_ERROR_ACTIVATE);
739                 }
740                 
741                 $info = MEMBER::getActivationInfo($key);
742                 if ( !$info )
743                 {
744                         Admin::error(_ERROR_ACTIVATE);
745                 }
746                 
747                 $mem =& $manager->getMember($info->vmember);
748                 if ( !$mem )
749                 {
750                         Admin::error(_ERROR_ACTIVATE);
751                 }
752                 switch ( $info->vtype )
753                 {
754                         case 'forgot':
755                                 if ( array_key_exists('ACTIVATE_FORGOT_TITLE', $template) && !empty($template['ACTIVATE_FORGOT_TITLE']) )
756                                 {
757                                         $title = $template['ACTIVATE_FORGOT_TITLE'];
758                                 }
759                                 else
760                                 {
761                                         $title = _ACTIVATE_FORGOT_TITLE;
762                                 }
763                                 if ( array_key_exists('ACTIVATE_FORGOT_TEXT', $template) && !empty($template['ACTIVATE_FORGOT_TEXT']) )
764                                 {
765                                         $text = $template['ACTIVATE_FORGOT_TEXT'];
766                                 }
767                                 else
768                                 {
769                                         $text = _ACTIVATE_FORGOT_TEXT;
770                                 }
771                                 break;
772                         case 'register':
773                                 if ( array_key_exists('ACTIVATE_REGISTER_TITLE', $template) && !empty($template['ACTIVATE_REGISTER_TITLE']) )
774                                 {
775                                         $title = $template['ACTIVATE_REGISTER_TITLE'];
776                                 }
777                                 else
778                                 {
779                                         $title = _ACTIVATE_REGISTER_TITLE;
780                                 }
781                                 if ( array_key_exists('ACTIVATE_REGISTER_TEXT', $template) && !empty($template['ACTIVATE_REGISTER_TEXT']) )
782                                 {
783                                         $text = $template['ACTIVATE_REGISTER_TEXT'];
784                                 }
785                                 else
786                                 {
787                                         $text = _ACTIVATE_REGISTER_TEXT;
788                                 }
789                                 break;
790                         case 'addresschange':
791                                 if ( array_key_exists('ACTIVATE_CHANGE_TITLE', $template) && !empty($template['ACTIVATE_CHANGE_TITLE']) )
792                                 {
793                                         $title = $template['ACTIVATE_CHANGE_TITLE'];
794                                 }
795                                 else
796                                 {
797                                         $title = _ACTIVATE_CHANGE_TITLE;
798                                 }
799                                 if (array_key_exists('ACTIVATE_CHANGE_TEXT', $template) && !empty($template['ACTIVATE_CHANGE_TEXT']))
800                                 {
801                                         $text = $template['ACTIVATE_CHANGE_TEXT'];
802                                 }
803                                 else
804                                 {
805                                         $text = _ACTIVATE_CHANGE_TEXT;
806                                 }
807                                 break;
808                 }
809                 $aVars = array(
810                         'memberName'    => Entity::hsc($mem->getDisplayName()),
811                         'realName'              => Entity::hsc($mem->getRealName()),
812                 );
813                 switch ( $type )
814                 {
815                         case 'title':
816                                 echo Template::fill($title, $aVars);
817                                 break;
818                         case 'text':
819                                 echo Template::fill($text,  $aVars);
820                                 break;
821                         case 'ackey':
822                                 echo Entity::hsc($key);
823                                 break;
824                 }
825                 return;
826         }
827         
828         /**
829          * AdminActions::parse_addtickettourl()
830          * Parse skinvar addtickettourl
831          *
832          * @param       string  $url    URI for ticket
833          * @return      void
834          */
835         public function parse_addtickettourl($url)
836         {
837                 global $manager;
838                 $url = $manager->addTicketToUrl($url);
839                 echo Entity::hsc($url);
840                 return;
841         }
842         
843         /**
844          * AdminActions::parse_adminbanlist()
845          * Parse skinvar adminbanlist
846          *
847          * @param       string  $template_name  name of template to use
848          * @return      void
849          */
850         public function parse_adminbanlist($template_name = '')
851         {
852                 $blogid = intRequestVar('blogid');
853                 
854                 $query = "SELECT * FROM %s WHERE blogid=%d ORDER BY iprange;";
855                 $query = sprintf($query, sql_table('ban'), (integer) $blogid);
856                 
857                 $resource = DB::getResult($query);
858                 if ( $resource->rowCount() > 0 )
859                 {
860                         $template['content'] = 'banlist';
861                         $this->parser-parse(showlist($resource, 'table', $template, $template_name));
862                 }
863                 else
864                 {
865                         echo _BAN_NONE;
866                 }
867                 return;
868         }
869         
870         /**
871          * AdminActions::parse_adminbatchaction()
872          * Parse skinvar adminbatchaction
873          *
874          * @param       void
875          * @return      void
876          */
877         public function parse_adminbatchaction()
878         {
879                 echo Entity::hsc(requestVar('batchaction'));
880                 return;
881         }
882         
883         /**
884          * AdminActions::parse_adminbatchlist()
885          * Parse skinvar adminbatchlist
886          *
887          * @param       string  $template_name  name of template to use
888          * @return      void
889          */
890         public function parse_adminbatchlist($template_name = '')
891         {
892                 global $manager;
893                 $templates = array();
894                 
895                 if ( !empty($template_name) )
896                 {
897                         $templates =& $manager->getTemplate($template_name);
898                 }
899                 
900                 if ( !array_key_exists('ADMIN_BATCHLIST', $templates) || empty($templates['ADMIN_BATCHLIST']) )
901                 {
902                         $template = '<li><%text(_BATCH_EXECUTING)%>&nbsp;'
903                         . '<b><%adminbatchaction%></b>&nbsp;'
904                         . '<%batchlisttype%>&nbsp;'
905                         . '<b><%batchid%></b>...&nbsp;'
906                         . '<b><%batchlistmsg%></b>'
907                         . "</li>\n";
908                 }
909                 else
910                 {
911                         $template = $templates['ADMIN_BATCHLIST'];
912                 }
913                 
914                 $selected = requestIntArray('batch');
915                 $action = requestVar('batchaction');
916                 
917                 switch ( $this->skintype )
918                 {
919                         case 'batchitem':
920                                 $batchlisttype  = _BATCH_ONITEM;
921                                 $deleteaction   = 'deleteOneItem';
922                                 $moveaction             = 'moveOneItem';
923                                 $destid                 = intRequestVar('destcatid');
924                                 break;
925                         case 'batchcomment':
926                                 $batchlisttype  = _BATCH_ONCOMMENT;
927                                 $deleteaction   = 'deleteOneComment';
928                                 break;
929                         case 'batchmember':
930                                 $batchlisttype  = _BATCH_ONMEMBER;
931                                 $deleteaction   = 'deleteOneMember';
932                                 $setadminsql    = sql_table('member') . ' SET madmin = 1 WHERE mnumber = ';
933                                 $unsetchksql    = 'SELECT * FROM ' . sql_table('member') . ' WHERE madmin = 1 AND mcanlogin = 1';
934                                 $unsetupsql             = sql_table('member') . ' SET madmin = 0 WHERE mnumber = ';
935                                 $unseterrmsg    = _ERROR_ATLEASTONEADMIN;
936                                 break;
937                         case 'batchteam':
938                                 $blogid                 = intRequestVar('blogid');
939                                 $batchlisttype  = _BATCH_ONTEAM;
940                                 $deleteaction   = 'deleteOneTeamMember';
941                                 $setadminsql    = sql_table('team') . ' SET tadmin = 1 WHERE tblog = ' . $blogid . ' AND tmember = ';
942                                 $unsetchksql    = 'SELECT * FROM ' . sql_table('team') . ' WHERE tadmin = 1 AND tblog = ' . $blogid;
943                                 $unseterrmsg    = _ERROR_ATLEASTONEBLOGADMIN;
944                                 $unsetupsql             = sql_table('team') . ' SET tadmin = 0 WHERE tblog = ' . $blogid . ' AND tmember = ';
945                                 break;
946                         case 'batchcategory':
947                                 $batchlisttype  = _BATCH_ONCATEGORY;
948                                 $deleteaction   = 'deleteOneCategory';
949                                 $moveaction             = 'moveOneCategory';
950                                 $destid                 = intRequestVar('destblogid');
951                                 break;
952                 }
953                 
954                 // walk over all selectedids and perform action
955                 foreach ( $selected as $selectedid )
956                 {
957                         $error = '';
958                         $selectedid = intval($selectedid);
959                         switch ( $action )
960                         {
961                                 case 'delete':
962                                         if ( $this->skintype != 'batchteam' )
963                                         {
964                                                 $error = call_user_func_array(array('Admin', $deleteaction), array($selectedid));
965                                         }
966                                         else
967                                         {
968                                                 $error = Admin::deleteOneTeamMember($blogid, $selectedid);
969                                         }
970                                         break;
971                                 case 'move':
972                                         $error = call_user_func_array(array('Admin', $moveaction), array($selectedid, $destid));
973                                         break;
974                                 case 'setadmin':
975                                         // always succeeds
976                                         DB::execute("UPDATE {$setadminsql} {$selectedid};");
977                                         $error = '';
978                                         break;
979                                 case 'unsetadmin':
980                                         // there should always remain at least one super-admin
981                                         $r = DB::getResult($unsetchksql);
982                                         if ( $r->rowCount() < 2 )
983                                         {
984                                                 $error = $unseterrmsg;
985                                         }
986                                         else
987                                         {
988                                                 DB::execute("UPDATE {$unsetupsql} {$selectedid};");
989                                         }
990                                         break;
991                                 default:
992                                         $error = _BATCH_UNKNOWN . Entity::hsc($action);
993                         }
994                                 
995                         $data = array(
996                                 'batchid'                       => $selectedid,
997                                 'batchlisttype'         => Entity::hsc($batchlisttype),
998                                 'adminbatchaction'      => Entity::hsc($action),
999                                 'batchlistmsg'          => $error ? $error : _BATCH_SUCCESS,
1000                         );
1001                                 
1002                         $this->parser->parse(Template::fill($template, $data));
1003                         echo '<br />';
1004                 }
1005                 return;
1006         }
1007         
1008         /**
1009          * AdminActions::parse_adminbloglink()
1010          * Parse skinvar adminbloglink
1011          *
1012          * @param       string  $template_name  name of template to use
1013          * @return      void
1014          */
1015         public function parse_adminbloglink($template_name = '')
1016         {
1017                 global $manager;
1018                 $blogid =  intRequestVar('blogid');
1019                 $blog   =& $manager->getBlog($blogid);
1020                 $templates = array();
1021                 
1022                 if ( !empty($template_name) )
1023                 {
1024                         $templates =& $manager->getTemplate($template_name);
1025                 }
1026                 
1027                 if ( !array_key_exists('ADMIN_BLOGLINK', $templates) || empty($templates['ADMIN_BLOGLINK']) )
1028                 {
1029                         $template = '<a href="<%url%>" title="<%adminbloglinktitle%>"><%blogname%></a>';
1030                 }
1031                 else
1032                 {
1033                         $template = $templates['ADMIN_BLOGLINK'];
1034                 }
1035                 
1036                 $data = array(
1037                         'url'                                   => Entity::hsc($blog->getURL()),
1038                         'adminbloglinktitle'    => _BLOGLIST_TT_VISIT,
1039                         'blogname'                              => Entity::hsc($blog->getName())
1040                 );
1041                 
1042                 echo Template::fill($template, $data);
1043                 return;
1044         }
1045         
1046         /**
1047          * AdminActions::parse_adminerrormesg()
1048          * Parse skinvar adminerrormesg
1049          *
1050          * @param       void
1051          * @return      void
1052          */
1053         public function parse_adminerrormesg()
1054         {
1055                 global $CONF;
1056                 $message = '';
1057                 
1058                 if ( requestVar('errormessage') )
1059                 {
1060                         $message = requestVar('errormessage');
1061                 }
1062                 elseif ( cookieVar($CONF['CookiePrefix'] . 'errormessage') )
1063                 {
1064                         $message = cookieVar($CONF['CookiePrefix'] . 'errormessage');
1065                 }
1066                 elseif ( Admin::sessionVar($CONF['CookiePrefix'] . 'errormessage') )
1067                 {
1068                         $message = Admin::sessionVar($CONF['CookiePrefix'] . 'errormessage');
1069                 }
1070                 echo Entity::hsc($message);
1071                 return;
1072         }
1073         
1074         /**
1075          * AdminActions::parse_allowedskinactions()
1076          * Parse skinvar allowedskinactions
1077          *
1078          * @param       void
1079          * @return      void
1080          */
1081         public function parse_allowedskinactions()
1082         {
1083                 global $manager;
1084                 
1085                 $type = strtolower(trim(requestVar('type')));
1086                 $skinid = intRequestVar('skinid');
1087                 
1088                 if ( !preg_match('#^admin#', $this->skintype) )
1089                 {
1090                         $skin =& $manager->getSkin($skinid);
1091                         $tag = 'skinvar';
1092                 }
1093                 else
1094                 {
1095                         $skin =& $manager->getSkin($skinid, 'AdminActions');
1096                         $tag = 'adminskinvar';
1097                 }
1098                 
1099                 $actions = $skin->getAllowedActionsForType($type);
1100                 sort($actions);
1101                 
1102                 while ( $current = array_shift($actions) )
1103                 {
1104                         echo helplink("{$tag}-{$current}") . "$current</a>\n";
1105                         
1106                         if ( count($actions) != 0 )
1107                         {
1108                                 echo ", ";
1109                         }
1110                 }
1111                 return;
1112         }
1113         
1114         /**
1115          * AdminActions::parse_banlistdeletedlist()
1116          * Parse skinvar banlistdeletedlist
1117          *
1118          * @param       string  $template_name  name of template to use
1119          * @return      void
1120          */
1121         public function parse_banlistdeletedlist($template_name = '')
1122         {
1123                 global $manager;
1124                 
1125                 $templates = array();
1126                 if ( $template_name )
1127                 {
1128                         $templates =& $manager->getTemplate($template_name);
1129                 }
1130                 
1131                 if ( !array_key_exists('BANLIST_DELETED_LIST', $templates) || empty($templates['BANLIST_DELETED_LIST']) )
1132                 {
1133                         $template = "<li><%blogname%></li>\n";
1134                 }
1135                 else
1136                 {
1137                         $template = $templates['BANLIST_DELETED_LIST'];
1138                 }
1139                 
1140                 $deleted = requestArray('delblogs');
1141                 foreach ( $deleted as $delblog )
1142                 {
1143                         $blog =& $manager->getBlog($delblog);
1144                         $data =  array(
1145                                 'blogname' => Entity::hsc($blog->getName())
1146                         );
1147                         echo Template::fill($template, $data);
1148                 }
1149                 
1150                 return;
1151         }
1152         
1153         /**
1154          * AdminActions::parse_batchdeletelist()
1155          * Parse skinvar batchdeletelist
1156          *
1157          * @param       void
1158          * @return      void
1159          */
1160         public function parse_batchdeletelist()
1161         {
1162                 $selected = requestIntArray('batch');
1163                 $index  = 0;
1164                 
1165                 foreach ( $selected as $select )
1166                 {
1167                         echo '<input type="hidden" name="batch[' . ($index++) . ']" value="' . intval($select) . "\" />\n";
1168                 }
1169                 // add hidden vars for team & comment
1170                 if ( requestVar('action') == 'batchteam' )
1171                 {
1172                         echo '<input type="hidden" name="blogid" value="' . intRequestVar('blogid') . "\" />\n";
1173                 }
1174                 if ( requestVar('action') == 'batchcomment' )
1175                 {
1176                         echo '<input type="hidden" name="itemid" value="' . intRequestVar('itemid') . "\" />\n";
1177                 }
1178                 return;
1179         }
1180
1181         /**
1182          * AdminActions::parse_defadminskinselect()
1183          * Parse skinvar defadminskinselect
1184          *
1185          * @param       string  $template_name  name of template to use
1186          * @return      void
1187          */
1188         public function parse_defadminskinselect($template_name)
1189         {
1190                 global $CONF, $action;
1191                 
1192                 if ( $action == 'editmembersettings' )
1193                 {
1194                         global $member;
1195                         $default = $member->adminskin;
1196                 }
1197                 elseif ( $action == 'memberedit' )
1198                 {
1199                         global $manager;
1200                         $mem = $manager->getMember(intRequestVar('memberid'));
1201                         $default = $mem->adminskin;
1202                 }
1203                 else
1204                 {
1205                         $default = $CONF['AdminSkin'];
1206                 }
1207                 
1208                 $query  = "SELECT sdname as text, sdnumber as value FROM %s WHERE sdname LIKE 'admin/%%'";
1209                 $query = sprintf($query, sql_table('skin_desc'));
1210                 $template = array(
1211                                 'name'          => 'adminskin',
1212                                 'tabindex'      => 10080,
1213                                 'selected'      => $default
1214                 );
1215                 
1216                 if ( $this->skintype != 'settingsedit' )
1217                 {
1218                         $template['extra'] = Entity::hsc(_MEMBERS_USESITELANG);
1219                 }
1220                 
1221                 $this->parser->parse(showlist($query, 'select', $template, $template_name));
1222                 return;
1223         }
1224         
1225         /**
1226          * AdminActions::parse_defbookmarkletselect()
1227          * Parse skinvar defbookmarkletselect
1228          *
1229          * @param       string  $template_name  name of template to use
1230          * @return      void
1231          */
1232         public function parse_defbookmarkletselect($template_name)
1233         {
1234                 global $CONF, $action;
1235                 
1236                 if ( $action == 'editmembersettings' )
1237                 {
1238                         global $member;
1239                         $default = $member->bookmarklet;
1240                 }
1241                 elseif ( $action == 'memberedit' )
1242                 {
1243                         global $manager;
1244                         $mem = $manager->getMember(intRequestVar('memberid'));
1245                         $default = $mem->bookmarklet;
1246                 }
1247                 else
1248                 {
1249                         $default = $CONF['BookmarkletSkin'];
1250                 }
1251                 
1252                 $query  = "SELECT sdname as text, sdnumber as value FROM %s WHERE sdname LIKE 'admin/%%'";
1253                 $query = sprintf($query, sql_table('skin_desc'));
1254         
1255                 $template = array(
1256                                 'name'          => 'bookmarklet',
1257                                 'tabindex'      => 10085,
1258                                 'selected'      => $default
1259                 );
1260                 
1261                 if ( $this->skintype != 'settingsedit' )
1262                 {
1263                         $template['extra'] = Entity::hsc(_MEMBERS_USESITELANG);
1264                 }
1265                 
1266                 $this->parser->parse(showlist($query, 'select', $template, $template_name));
1267                 return;
1268         }
1269         
1270         /**
1271          * AdminActions::parse_batchdeletetype()
1272          * Parse skinvar batchdeletetype
1273          *
1274          * @param       void
1275          * @return      void
1276          */
1277         public function parse_batchdeletetype()
1278         {
1279                 echo Entity::hsc(requestVar('action'));
1280                 return;
1281         }
1282         
1283         /**
1284          * AdminActions::parse_batchmovebtn()
1285          * Parse skinvar batchmovebtn
1286          *
1287          * @param       void
1288          * @return      void
1289          */
1290         public function parse_batchmovebtn()
1291         {
1292                 $actionType = requestVar('action');
1293                 switch ( $actionType )
1294                 {
1295                         case 'batchitem':
1296                                 echo _MOVE_BTN;
1297                                 break;
1298                         case 'batchcategory':
1299                                 echo _MOVECAT_BTN;
1300                                 break;
1301                 }
1302                 return;
1303         }
1304         
1305         /**
1306          * AdminActions::parse_batchmovelist()
1307          * Parse skinvar batchmovelist
1308          *
1309          * @param       void
1310          * @param       void
1311          */
1312         public function parse_batchmovelist()
1313         {
1314                 $selected = requestIntArray('batch');
1315                 $count    = 0;
1316                 foreach ( $selected as $select )
1317                 {
1318                         echo '<input type="hidden" name="batch[' . ($count) . ']" value="' . intval($select) . "\" />\n";
1319                         $count++;
1320                 }
1321                 return;
1322         }
1323         
1324         /**
1325          * AdminActions::parse_batchmovetitle()
1326          * Parse skinvar batchmovetitle
1327          *
1328          * @param       void
1329          * @return      void
1330          */
1331         public function parse_batchmovetitle()
1332         {
1333                 $actionType = requestVar('action');
1334                 switch ( $actionType )
1335                 {
1336                         case 'batchitem':
1337                                 echo _MOVE_TITLE;
1338                                 break;
1339                         case 'batchcategory':
1340                                 echo _MOVECAT_TITLE;
1341                                 break;
1342                 }
1343                 return;
1344         }
1345         
1346         /**
1347          * AdminActions::parse_batchmovetype()
1348          * Parse skinvar batchmovetype
1349          *
1350          * @param       void
1351          * @return      void
1352          */
1353         public function parse_batchmovetype()
1354         {
1355                 echo Entity::hsc(requestVar('action'));
1356                 return;
1357         }
1358         
1359         /**
1360          * AdminActions::parse_blogcatlist()
1361          * Parse skinvar blogcatlist
1362          *
1363          * @param       void
1364          * @return      void
1365          */
1366         public function parse_blogcatlist($template_name = '')
1367         {
1368                 global $manager;
1369                 $blogid = intRequestVar('blogid');
1370                 $query = "SELECT * FROM %s WHERE cblog = %d ORDER BY cname;";
1371                 $query = sprintf($query, sql_table('category'), (integer) $blogid);
1372                 
1373                 $resource = DB::getResult($query);
1374                 if ( $resource->rowCount() > 0 )
1375                 {
1376                         $template['content']  = 'categorylist';
1377                         $template['tabindex'] = 200;
1378                         $this->parser->parse(listplug_batchlist('category', $resource, 'table', $template));
1379                 }
1380                 else
1381                 {
1382                         /* TODO: nothing to be shown */
1383                 }
1384                 $resource->closeCursor();
1385                 
1386                 return;
1387         }
1388         
1389         /**
1390          * AdminActions::parse_blogid()
1391          * Parse skinvar blogid
1392          *
1393          * @param       void
1394          * @return      void
1395          */
1396         public function parse_blogid()
1397         {
1398                 echo intRequestVar('blogid');
1399                 return;
1400         }
1401         
1402         /**
1403          * AdminActions::parse_blognotifysetting()
1404          * Parse skinvar blognotifysetting
1405          *
1406          * @param       void
1407          * @return      void
1408          */
1409         public function parse_blognotifysetting($type)
1410         {
1411                 global $manager;
1412                 $blogid =  intRequestVar('blogid');
1413                 $blog   =& $manager->getBlog($blogid);
1414                 
1415                 switch ( $type )
1416                 {
1417                         case 'comment':
1418                                 if ( !$blog->notifyOnComment() )
1419                                 {
1420                                         return;
1421                                 }
1422                                 break;
1423                         case 'vote':
1424                                 if ( !$blog->notifyOnVote() )
1425                                 {
1426                                         return;
1427                                 }
1428                                 break;
1429                         case 'newitem':
1430                                 if ( !$blog->notifyOnNewItem() )
1431                                 {
1432                                         return;
1433                                 }
1434                                 break;
1435                 }
1436                 echo ' checked="checked"';
1437                 return;
1438         }
1439         
1440         /**
1441          * AdminActions::parse_blogsetting()
1442          * Parse skinvar blogsetting
1443          *
1444          * @param       string  $which  name of weblog setting
1445          * @return      void
1446          */
1447         public function parse_blogsetting($which)
1448         {
1449                 echo $this->parse_getblogsetting($which);
1450                 return;
1451         }
1452         
1453         /**
1454          * AdminActions::parse_blogsettingyesno()
1455          * Parse skinvar blogsettingyesno
1456          *
1457          * @param       string  $type                   type of weblog setting
1458          * @param       string  $template_name  name of template to use
1459          * @return      void
1460          */
1461         public function parse_blogsettingyesno($type, $template_name = '')
1462         {
1463                 global $manager;
1464
1465                 $blogid =  intRequestVar('blogid');
1466                 $blog   =& $manager->getBlog($blogid);
1467
1468                 switch ( $type )
1469                 {
1470                         case 'convertbreaks':
1471                                 $checkedval = $blog->convertBreaks();
1472                                 $tabindex   = 55;
1473                                 break;
1474                         case 'allowpastposting':
1475                                 $checkedval = $blog->allowPastPosting();
1476                                 $tabindex   = 57;
1477                                 break;
1478                         case 'comments':
1479                                 $checkedval = $blog->commentsEnabled();
1480                                 $tabindex   = 60;
1481                                 break;
1482                         case 'public':
1483                                 $checkedval = $blog->isPublic();
1484                                 $tabindex   = 70;
1485                                 break;
1486                         case 'reqemail':
1487                                 $checkedval = $blog->emailRequired();
1488                                 $tabindex   = 72;
1489                                 break;
1490                         case 'searchable':
1491                                 $checkedval = $blog->getSearchable();
1492                                 $tabindex   = 122;
1493                                 break;
1494                 }
1495                 $this->parse_inputyesno($type, $checkedval, $tabindex, 1, 0, _YES, _NO, 0, $template_name);
1496                 return;
1497         }
1498         
1499         /**
1500          * AdminActions::parse_blogteamlist()
1501          * Parse skinvar blogteamlist
1502          *
1503          * @param       string  $template_name  name of template to use
1504          * @return      void
1505          */
1506         public function parse_blogteamlist($template_name = '')
1507         {
1508                 global $manager;
1509                 $blogid = intRequestVar('blogid');
1510                 $query = "SELECT tblog, tmember, mname, mrealname, memail, tadmin "
1511                 . "FROM %s, %s "
1512                 . "WHERE tmember=mnumber AND tblog= %d";
1513                 $query = sprintf($query, sql_table('member'), sql_table('team'), (integer) $blogid);
1514                 
1515                 $resource = DB::getResult($query);
1516                 if ( $resource->rowCount() > 0 )
1517                 {
1518                         $template['content']  = 'teamlist';
1519                         $template['tabindex'] = 10;
1520                                 
1521                         $this->parser->parse(listplug_batchlist('team', $resource, 'table', $template));
1522                 }
1523                 else
1524                 {
1525                         echo _LISTS_NOMORE;
1526                 }
1527                 $resource->closeCursor();
1528                 
1529                 return;
1530         }
1531         
1532         /**
1533          * AdminActions::parse_blogteammembers()
1534          * Parse skinvar blogteammembers
1535          *
1536          * @param       void
1537          * @return      void
1538          */
1539         public function parse_blogteammembers()
1540         {
1541                 $blogid = intRequestVar('blogid');
1542                 $query  = "SELECT mname, mrealname "
1543                 . "FROM %s, %s "
1544                 . "WHERE mnumber=tmember AND tblog=%d;";
1545                 $query = sprintf($query, sql_table('member'), sql_table('team'), (integer) $blogid);
1546                 $res = DB::getResult($query);
1547                 $memberNames = array();
1548                 foreach ( $res as $row )
1549                 {
1550                         $memberNames[] = Entity::hsc($row['mname']) . ' (' . Entity::hsc($row['mrealname']). ')';
1551                 }
1552                 echo implode(',', $memberNames);
1553         }
1554         
1555         /**
1556          * AdminActions::parse_blogtime()
1557          * Parse skinvar blogtime
1558          *
1559          * @param       string  $type   type of time
1560          * @param       string  $format format for time expression
1561          * @param       integer $offset offset of time
1562          * @return      void
1563          */
1564         public function parse_blogtime($type, $format = '%H:%M', $offset = 0)
1565         {
1566                 global $manager;
1567                 
1568                 if ( $type != 'blogtime' )
1569                 {
1570                         /* return server time */
1571                         $timestamp = time() + $offset;
1572                 }
1573                 else
1574                 {
1575                         $bid = intRequestVar('blogid');
1576                         $b =& $manager->getBlog($bid);
1577                         $timestamp = $b->getCorrectTime() + $offset;
1578                 }
1579                 
1580                 echo i18n::formatted_datetime($format, $timestamp);
1581                 return;
1582         }
1583         
1584         /**
1585          * AdminActions::parse_bookmarkletadmin()
1586          * Parse skinvar bookmarkletadmin
1587          *
1588          * @param       void
1589          * @return      void
1590          */
1591         public function parse_bookmarkletadmin()
1592         {
1593                 global $manager;
1594                 
1595                 $blogid = intRequestVar('blogid');
1596                 
1597                 echo Entity::hsc('javascript:' . getBookmarklet($blogid));
1598                 return;
1599         }
1600         
1601         /**
1602          * AdminActions::parse_categories()
1603          * Parse skinvar categories
1604          *
1605          * create category dropdown box
1606          *
1607          * @param       string  $type   name of setting for category
1608          * @return      void
1609          */
1610         public function parse_categories($startidx = 0)
1611         {
1612                 global $manager;
1613                 
1614                 if ( !array_key_exists('catid', Admin::$contents) || empty(Admin::$contents['catid']) )
1615                 {
1616                         $catid = Admin::$blog->getDefaultCategory();
1617                 }
1618                 else
1619                 {
1620                         $catid = Admin::$contents['catid'];
1621                 }
1622                 
1623                 $this->selectBlog('catid', 'category', $catid, $startidx, 1, Admin::$blog->getID());
1624                 
1625                 return;
1626         }
1627
1628         /**
1629          * AdminActions::parse_categorysetting()
1630          * Parse skinvar categorysetting
1631          *
1632          * @param       string  $type   type in category setting
1633          * @return      void
1634          */
1635         public function parse_categorysetting($type)
1636         {
1637                 $catid  = intRequestVar('catid');
1638                 if ( $type == 'id' )
1639                 {
1640                         echo $catid;
1641                         return;
1642                 }
1643                 $blogid = intRequestVar('blogid');
1644                 $query  = "SELECT * FROM %s WHERE cblog = %d AND catid = %d;";
1645                 $query  = sprintf($query, sql_table('category'), (integer) $blogid, (integer) $catid);
1646                 $row    = DB::getRow($query);
1647                 
1648                 if ( $type != 'name' )
1649                 {
1650                         echo Entity::hsc($row['cdesc']);
1651                 }
1652                 else
1653                 {
1654                         echo Entity::hsc($row['cname']);
1655                 }
1656                 
1657                 return;
1658         }
1659         
1660         /**
1661          * AdminActions::parse_codename()
1662          * Parse templatevar codename
1663          *
1664          * @param       $value
1665          * @param       $name
1666          *
1667          */
1668         public function parse_checkedonval($value, $name)
1669         {
1670                 global $manager;
1671                 
1672                 $item = false;
1673                 $itemid = intRequestVar('itemid');
1674                 $item =& $manager->getItem($itemid, 1, 1);
1675                 
1676                 if ( $item )
1677                 {
1678                         $blog =& $manager->getBlog($item['blogid']);
1679                         
1680                         if ( $blog->convertBreaks() && requestVar('action') == 'itemedit' )
1681                         {
1682                                 $item['body'] = removeBreaks($item['body']);
1683                                 $item['more'] = removeBreaks($item['more']);
1684                         }
1685                 }
1686                 
1687                 $contents = array();
1688                 if ( requestVar('action') == 'itemedit' )
1689                 {
1690                         $contents = $item;
1691                 }
1692                 if ( !isset($contents[$name]) )
1693                 {
1694                         $contents[$name] = '';
1695                 }
1696                 if ($contents[$name] == $value)
1697                 {
1698                         echo 'checked="checked"';
1699                 }
1700                 return;
1701         }
1702         
1703         /**
1704          * AdminActions::parse_codename()
1705          * Parse templatevar codename
1706          *
1707          * @param       void
1708          * @return      void
1709          *
1710          * TODO: is this need???
1711          */
1712         public function parse_codename()
1713         {
1714                 global $nucleus;
1715                 echo $nucleus['codename'];
1716                 return;
1717         }
1718         
1719         /**
1720          * AdminActions::parse_commentnavlist()
1721          * Parse skinvar commentnavlist
1722          *
1723          * @param       void
1724          * @return      void
1725          */
1726         public function parse_commentnavlist()
1727         {
1728                 global $CONF, $manager, $member;
1729                 
1730                 // start index
1731                 if ( postVar('start') )
1732                 {
1733                         $start = intPostVar('start');
1734                 }
1735                 else
1736                 {
1737                         $start = 0;
1738                 }
1739                 
1740                 // amount of items to show
1741                 if ( postVar('amount') )
1742                 {
1743                         $amount = intPostVar('amount');
1744                 }
1745                 else
1746                 {
1747                         $amount = (integer) $CONF['DefaultListSize'];
1748                         if ( $amount < 1 )
1749                         {
1750                                 $amount = 10;
1751                         }
1752                 }
1753                 $query = 'SELECT cbody, cuser, cmail, cemail, mname, ctime, chost, cnumber, cip, citem '
1754                        . 'FROM %s '
1755                        . 'LEFT OUTER JOIN %s ON  mnumber=cmember '
1756                        . 'WHERE ';
1757                 $query = sprintf($query, sql_table('comment'), sql_table('member'));
1758                 
1759                 if ( $this->skintype == 'itemcommentlist' )
1760                 {
1761                         $itemid                                 = intRequestVar('itemid');
1762                         $query                                  .= " citem={$itemid}";
1763                         $template['canAddBan']  = $member->blogAdminRights(intRequestVar('blogid'));
1764                         $bid                                    = 0;
1765                         $nonComments                    = _NOCOMMENTS;
1766                 }
1767                 elseif ( $this->skintype == 'browseowncomments' )
1768                 {
1769                         $itemid                                 = 0;
1770                         $query                                  .= ' cmember=' . $member->getID();
1771                         $template['canAddBan']  = 0;
1772                         $bid                                    = 0;
1773                         $nonComments                    = _NOCOMMENTS_YOUR;
1774                 }
1775                 elseif ( $this->skintype == 'blogcommentlist' )
1776                 {
1777                         $itemid                                 = 0;
1778                         $query                                  .= ' cblog=' . intRequestVar('blogid');
1779                         $template['canAddBan']  = $member->blogAdminRights(intRequestVar('blogid'));
1780                         $bid                                    = intRequestVar('blogid');
1781                         $nonComments                    = _NOCOMMENTS_BLOG;
1782                 }
1783                 
1784                 $search = postVar('search');
1785                 if ( !empty($search) )
1786                 {
1787                         $query .= ' and cbody LIKE ' . DB::quoteValue('%'.$search.'%');
1788                 }
1789                 
1790                 $query .= " ORDER BY ctime ASC LIMIT {$start},{$amount}";
1791                 
1792                 $resource = DB::getResult($query);
1793                 if ( $resource->rowCount() > 0 )
1794                 {
1795                         $template['action'] = $this->skintype;
1796                         $template['start'] = $start;
1797                         $template['amount'] = $amount;
1798                         $template['minamount'] = 0;
1799                         $template['maxamount'] = 1000;
1800                         $template['blogid'] = $bid;
1801                         $template['search'] = $search;
1802                         $template['itemid'] = $itemid;
1803                                 
1804                         $template['content'] = 'commentlist';
1805                                 
1806                         $this->parser->parse(listplug_navlist('comment', $resource, 'table', $template));
1807                 }
1808                 else
1809                 {
1810                         /* TODO: nothing to be shown */
1811                 }
1812                 $resource->closeCursor();
1813                 
1814                 return;
1815         }
1816         
1817         /**
1818          * AdminActions::parse_configsettingsedit()
1819          * Parse skinvar configsettingsedit
1820          *
1821          * @param       string  $type   type of global configuration
1822          * @return      void
1823          */
1824         public function parse_configsettingsedit($type)
1825         {
1826                 global $CONF;
1827                 switch ( $type )
1828                 {
1829                         case 'DefaultListSize':
1830                                 if ( !array_key_exists('DefaultListSize', $CONF) )
1831                                 {
1832                                         $query = "INSERT INTO %s VALUES (DefaultListSize, 10);";
1833                                         $query = sprintf($query, sql_table('config'));
1834                                         DB::execute($query);
1835                                         $CONF['DefaultListSize'] = 10;
1836                                 }
1837                                 elseif ( intval($CONF['DefaultListSize']) < 1 )
1838                                 {
1839                                         $CONF['DefaultListSize'] = 10;
1840                                 }
1841                                 echo intval($CONF['DefaultListSize']);
1842                                 break;
1843                         case 'SessionCookie':
1844                                 $value = $CONF['SessionCookie'];
1845                                 $txt1  = _SETTINGS_COOKIESESSION;
1846                                 $txt2  = _SETTINGS_COOKIEMONTH;
1847                                 $this->parse_inputyesno('SessionCookie', $value, 10190, 1, 0, $txt1, $txt2);
1848                                 break;
1849                         case 'URLMode':
1850                                 $value = $CONF['URLMode'];
1851                                 $txt1  = _SETTINGS_URLMODE_NORMAL;
1852                                 $txt2  = _SETTINGS_URLMODE_PATHINFO;
1853                                 $this->parse_inputyesno('URLMode', $value, 10077, 'normal', 'pathinfo', $txt1, $txt2);
1854                                 break;
1855                         default:
1856                                 if ( array_key_exists($type, $CONF) && is_string($CONF[$type]) )
1857                                 {
1858                                         echo  Entity::hsc($CONF[$type]);
1859                                 }
1860                                 break;
1861                 }
1862                 return;
1863         }
1864         
1865         /**
1866          * AdminActions::parse_configsettingsyesno()
1867          * Parse skinvar configsettingsyesno
1868          *
1869          * @param       string  $type           type of global setting
1870          * @param       integer $tabindex       tabindex attribute of input element
1871          * @return      void
1872          */
1873         public function parse_configsettingsyesno($type, $tabindex)
1874         {
1875                 global $CONF;
1876                 if ( array_key_exists($type, $CONF) )
1877                 {
1878                         $this->parse_inputyesno($type, $CONF[$type], $tabindex);
1879                 }
1880                 return;
1881         }
1882         
1883         /**
1884          * AdminActions::parse_contents()
1885          * Parse skinvar contents
1886          *
1887          * @param       string  $which          part for item
1888          * @return      void
1889          */
1890         public function parse_contents($which)
1891         {
1892                 if ( !array_key_exists($which, Admin::$contents) )
1893                 {
1894                         Admin::$contents[$which] = '';
1895                 }
1896                 echo Entity::hsc(Admin::$contents[$which]);
1897         }
1898         
1899         /**
1900          * AdminActions::parse_currenttime()
1901          * Parse skinvar currenttime
1902          *
1903          * @param       string  $what
1904          */
1905         // for future items
1906         public function parse_currenttime($what)
1907         {
1908                 $nu = getdate(Admin::$blog->getCorrectTime());
1909                 echo $nu[$what];
1910         }
1911         
1912         /**
1913          * AdminActions::parse_customhelplink()
1914          * Parse skinvar customhelplink
1915          *
1916          * @param       string  $topic          name of topic
1917          * @param       string  $tplName        name of template
1918          * @param       string  $url            string as URI
1919          * @param       string  $iconURL        string as URI for icon
1920          * @param       string  $alt            alternative text for image element
1921          * @param       string  $title          title for anchor element
1922          * @return      void
1923          */
1924         public function parse_customhelplink($topic, $tplName = '', $url = '', $iconURL = '', $alt = '', $title = '', $onclick = '')
1925         {
1926                 $this->customHelp($topic, $url, $iconURL);
1927                 return;
1928         }
1929         
1930         /**
1931          * AdminActions::parse_date()
1932          * Parse skinvar date
1933          */
1934         public function parse_date($format = 'c')
1935         {
1936                 global $CONF, $manager;
1937                 /* TODO: offset is based on i18n::get_current_locale()? */
1938                 echo i18n::formatted_datetime($format, time());
1939                 return;
1940         }
1941         
1942         /**
1943          * AdminActions::parse_normalskinlist()
1944          * Parse skinvar defaultadminskintypes
1945          *
1946          * @param       string  $template_name  name of template
1947          * @return      void
1948          */
1949         public function parse_normalskinlist($template_name = '')
1950         {
1951                 global $CONF, $manager;
1952                 
1953                 if ( !preg_match('#^admin#', $this->skintype) )
1954                 {
1955                         $skin =& $manager->getSkin($CONF['BaseSkin']);
1956                         /* TODO: removeaction? */
1957                         $template['editaction'] = 'skinedittype';
1958                 }
1959                 else
1960                 {
1961                         $skin =& $manager->getSkin($CONF['AdminSkin'], 'AdminActions');
1962                         $template['editaction'] = 'adminskinedittype';
1963                         /* TODO: removeaction? */
1964                 }
1965                 
1966                 $temporary = $skin->getDefaultTypes();
1967                 $normal_skintype = array();
1968                 foreach ( $temporary as $type => $label )
1969                 {
1970                         $normal_skintype[] = array(
1971                                 'skintype'              => $type,
1972                                 'skintypename'  => $label
1973                         );
1974                 }
1975                 
1976                 $template['tabindex'] = 10;
1977                 $template['skinid'] = $skin->getID();
1978                 $template['skinname'] = $skin->getName();
1979                 $this->parser->parse(showlist($normal_skintype, 'list_normalskinlist', $template, $template_name));
1980                 
1981                 return;
1982         }
1983         
1984         /**
1985          * AdminActions::parse_defblogselect()
1986          * Parse skinvar defblogselect
1987          *
1988          * @param       string  $template_name  name of template
1989          * @return      void
1990          */
1991         public function parse_defblogselect($template_name = '')
1992         {
1993                 global $CONF;
1994                 
1995                 $query = "SELECT bname as text, bnumber as value FROM %s;";
1996                 $query = sprintf($query, sql_table('blog'));
1997                 
1998                 $template['name'] = 'DefaultBlog';
1999                 $template['selected'] = $CONF['DefaultBlog'];
2000                 $template['tabindex'] = 10;
2001                 $this->parser->parse(showlist($query, 'select', $template, $template_name));
2002                 
2003                 return;
2004         }
2005         
2006         /**
2007          * AdminActions::parse_defcatselect()
2008          * Parse skinvar defcatselect
2009          *
2010          * @param       string  $template_name  name of template
2011          * @return      void
2012          */
2013         public function parse_defcatselect($template_name = '')
2014         {
2015                 global $manager;
2016                 
2017                 $blogid = intRequestVar('blogid');
2018                 $blog =& $manager->getBlog($blogid);
2019                 
2020                 $query = "SELECT cname as text, catid as value FROM %s WHERE cblog=%d;";
2021                 $query = sprintf($query, sql_table('category'), (integer) $blog->getID());
2022                 
2023                 $template['name']        = 'defcat';
2024                 $template['selected'] = $blog->getDefaultCategory();
2025                 $template['tabindex'] = 110;
2026                 
2027                 $this->parser->parse(showlist($query, 'select', $template, $template_name));
2028                 
2029                 return;
2030         }
2031         
2032         /**
2033          * AdminActions::parse_defskinselect()
2034          * Parse skinvar defskinselect
2035          *
2036          * @param       string  $type                   type of skin
2037          * @param       string  $template_name  name of template
2038          * @return      void
2039          */
2040         public function parse_defskinselect($type = 'blog', $template_name = '')
2041         {
2042                 global $CONF, $manager, $member;
2043                 
2044                 if ( !preg_match('#^admin#', $this->skintype) )
2045                 {
2046                         $blogid = intRequestVar('blogid');
2047                         if ( !$blogid )
2048                         {
2049                                 $template['selected'] = $CONF['BaseSkin'];
2050                         }
2051                         else
2052                         {
2053                                 $blog =& $manager->getBlog($blogid);
2054                                 $template['selected'] = $blog->getDefaultSkin();
2055                         }
2056                                 
2057                         if ( $type != 'blog' )
2058                         {
2059                                 $template['name'] = 'BaseSkin';
2060                         }
2061                         else
2062                         {
2063                                 $template['name'] = 'defskin';
2064                         }
2065                                 
2066                         $query = "SELECT sdname as text, sdnumber as value FROM %s WHERE sdname NOT LIKE 'admin/%%';";
2067                 }
2068                 else
2069                 {
2070                         /* TODO: member object will have its own adminskin id */
2071                         $template['selected'] = $CONF['AdminSkin'];
2072                         $template['name'] = 'AdminSkin';
2073                         $query = "SELECT sdname as text, sdnumber as value FROM %s WHERE sdname LIKE 'admin/%%';";
2074                 }
2075                 
2076                 $query = sprintf($query, sql_table('skin_desc'));
2077                 $template['tabindex'] = 50;
2078                 
2079                 $this->parser->parse(showlist($query, 'select', $template, $template_name));
2080                 
2081                 return;
2082         }
2083         
2084         /**
2085          * AdminActions::parse_deletecomment()
2086          * Parse skinvar deletecomment
2087          *
2088          * @param       string  $type   type of infomation for comment
2089          * @return      void
2090          */
2091         public function parse_deletecomment($type = 'id')
2092         {
2093                 $commentid      = intRequestVar('commentid');
2094                 $comment        = COMMENT::getComment($commentid);
2095                 
2096                 switch ( $type )
2097                 {
2098                         case 'id':
2099                                 echo intRequestVar('commentid');
2100                                 break;
2101                         case 'author':
2102                                 if ( array_key_exists('member', $comment) && !empty($comment['member']) )
2103                                 {
2104                                         echo $comment['member'];
2105                                 }
2106                                 else
2107                                 {
2108                                         echo $comment['user'];
2109                                 }
2110                                 break;
2111                         case 'body':
2112                                 $body = strip_tags($comment['body']);
2113                                 echo Entity::hsc(shorten($body, 300, '...'));
2114                 }
2115                 return;
2116         }
2117         
2118         /**
2119          * AdminActions::parse_deleteitembody()
2120          * Parse skinvar deleteitembody
2121          *
2122          * @param       void
2123          * @return      void
2124          */
2125         public function parse_deleteitembody()
2126         {
2127                 global $manager;
2128                 
2129                 $itemid =  intRequestVar('itemid');
2130                 $item =& $manager->getItem($itemid, 1, 1);
2131                 
2132                 $body =  strip_tags($item['body']);
2133                 
2134                 echo Entity::hsc(shorten($body, 300, '...'));
2135                 
2136                 return;
2137         }
2138         
2139         /**
2140          * AdminActions::parse_deleteitemid()
2141          * Parse skinvar deleteitemid
2142          *
2143          * @param       void
2144          * @return      void
2145          */
2146         public function parse_deleteitemid()
2147         {
2148                 echo (integer) intRequestVar('itemid');
2149                 return;
2150         }
2151         
2152         /**
2153          * AdminActions::parse_deleteitemtitle()
2154          * Parse skinvar deleteitemtitle
2155          *
2156          * @param       void
2157          * @return      void
2158          */
2159         public function parse_deleteitemtitle()
2160         {
2161                 global $manager;
2162                 
2163                 $itemid = intRequestVar('itemid');
2164                 $item =& $manager->getItem($itemid, 1, 1);
2165                 
2166                 echo Entity::hsc(strip_tags($item['title']));
2167                 
2168                 return;
2169         }
2170         
2171         /**
2172          * AdminActions::parse_editcomment()
2173          * Parse skinvar editcomment
2174          *
2175          * @param       string  $type   type of comment setting
2176          * @return      void
2177          */
2178         public function parse_editcomment($type = 'id')
2179         {
2180                 global $manager;
2181                 
2182                 $comment = Admin::$contents;
2183                 
2184                 switch ( $type )
2185                 {
2186                         case 'id':
2187                                 echo intRequestVar('commentid');
2188                                 break;
2189                         case 'user':
2190                                 if ( !array_key_exists('member', $comment) || empty($comment['member']) )
2191                                 {
2192                                         echo $comment['user'] . " (" . _EDITC_NONMEMBER . ")";
2193                                 }
2194                                 else
2195                                 {
2196                                         echo $comment['member'] . " (" . _EDITC_MEMBER . ")";
2197                                 }
2198                                 break;
2199                         case 'date':
2200                                 echo date("Y-m-d @ H:i", $comment['timestamp']);
2201                                 break;
2202                         case 'body':
2203                                 $comment['body'] = str_replace('<br />', '', $comment['body']);
2204                                 $comment['body'] = preg_replace("#<a href=['\"]([^'\"]+)['\"]( rel=\"nofollow\")?>[^<]*</a>#", "\\1", $comment['body']);
2205                                 echo $comment['body'];
2206                                 break;
2207                         case 'cmail':
2208                                 echo $comment['userid'];
2209                                 break;
2210                         case 'url':
2211                                 echo $comment['userid'];
2212                                 break;
2213                         default:
2214                                 if ( array_key_exists($type, $comment) && !empty($comment[$type]) )
2215                                 {
2216                                         echo $comment[$type];
2217                                 }
2218                                 break;
2219                 }
2220                 return;
2221         }
2222         
2223         /**
2224          * AdminActions::parse_editdesturl()
2225          * Parse skinvar editdesturl
2226          */
2227         public function parse_editdesturl()
2228         {
2229                 if ( requestVar('desturl') )
2230                 {
2231                         echo Entity::hsc(requestVar('desturl'));
2232                 }
2233                 return;
2234         }
2235         
2236         /**
2237          * AdminActions::parse_editmemberlist()
2238          * Parse skinvar editmemberlist
2239          *
2240          * @param       string  $template_name  name of template
2241          * @return      void
2242          */
2243         public function parse_editmemberlist($template_name = '')
2244         {
2245                 global $manager;
2246                 // show list of members with actions
2247                 $query = 'SELECT * FROM %s;';
2248                 $query =  sprintf($query, sql_table('member'));
2249                 
2250                 $resource = DB::getResult($query);
2251                 if ( $resource->rowCount() > 0 )
2252                 {
2253                         $template['content'] = 'memberlist';
2254                         $template['tabindex'] = 10;
2255                                 
2256                         $this->parser->parse(listplug_batchlist('member', $resource, 'table', $template));
2257                 }
2258                 else
2259                 {
2260                         echo _LISTS_NOMORE;
2261                 }
2262                 $resource->closeCursor();
2263                 
2264                 return;
2265         }
2266         
2267         /**
2268          * AdminActions::parse_editmember()
2269          * Parse skinvar editmember
2270          *
2271          * @param       string  $type                   type of information for member
2272          * @return      string  $tempateName    name of template to use
2273          * @return      void
2274          */
2275         public function parse_editmember($type = 'id', $template_name = '')
2276         {
2277                 global $CONF, $manager, $member;
2278                 
2279                 $memberid = intRequestVar('memberid');
2280                 $mem =& $manager->getMember($memberid);
2281                 
2282                 switch ( $type )
2283                 {
2284                         case 'id':
2285                                 echo intRequestVar('memberid');
2286                                 break;
2287                         case 'displayname':
2288                                 if ( $this->skintype == 'teamdelete' || $this->skintype == 'memberdelete' )
2289                                 {
2290                                         echo Entity::hsc($mem->getDisplayName());
2291                                 }
2292                                 else
2293                                 {
2294                                         $dispName = Entity::hsc($mem->getDisplayName());
2295                                         if ( $CONF['AllowLoginEdit'] || $member->isAdmin() )
2296                                         {
2297                                                 echo '<input name="name" tabindex="10" maxlength="32" size="32" value="' . $dispName . "\" />\n";
2298                                         }
2299                                         else
2300                                         {
2301                                                 echo $dispName;
2302                                         }
2303                                 }
2304                                 break;
2305                         case 'realname':
2306                                 echo Entity::hsc($mem->getRealName());
2307                                 break;
2308                         case 'email':
2309                                 echo Entity::hsc($mem->getEmail());
2310                                 break;
2311                         case 'url':
2312                                 echo Entity::hsc($mem->getURL());
2313                                 break;
2314                         case 'admin':
2315                                 $this->parse_inputyesno('admin', $mem->isAdmin(), 60, 1, 0, _YES, _NO, 0, $template_name);
2316                                 break;
2317                         case 'canlogin':
2318                                 $this->parse_inputyesno('canlogin', $mem->canLogin(), 70, 1, 0, _YES, _NO, $mem->isAdmin(), $template_name);
2319                                 break;
2320                         case 'notes':
2321                                 echo Entity::hsc($mem->getNotes());
2322                                 break;
2323                         case 'autosave':
2324                                 $this->parse_inputyesno('autosave', $mem->getAutosave(), 87, 1, 0, _YES, _NO, 0, $template_name);
2325                                 break;
2326                         default:
2327                                 break;
2328                 }
2329                 return;
2330         }
2331         
2332         /**
2333          * AdminActions::parse_editpluginfo()
2334          * Parse skinvar editpluginfo
2335          *
2336          * @param       string  $type   type of plugin info
2337          * @return      void
2338          */
2339         public function parse_editpluginfo($type)
2340         {
2341                 global $manager;
2342                 
2343                 $pid = intRequestVar('plugid');
2344                 switch ( $type )
2345                 {
2346                         case 'id':
2347                                 echo $pid;
2348                                 break;
2349                         case 'name':
2350                                 echo Entity::hsc($manager->getPluginNameFromPid($pid));
2351                                 break;
2352                 }
2353                 return;
2354         }
2355         
2356         /**
2357          * AdminActions::parse_editplugoptionslist()
2358          * Parse skinvar editplugoptionslist
2359          *
2360          * @param       string  $template_name  name of template
2361          * @return      void
2362          */
2363         public function parse_editplugoptionslist($template_name = '')
2364         {
2365                 global $manager;
2366                 
2367                 $pid = intRequestVar('plugid');
2368                 $aOptions = array();
2369                 $aOIDs  = array();
2370                 
2371                 $query  = "SELECT * FROM %s WHERE ocontext='global' AND opid=%d ORDER BY oid ASC;";
2372                 $query = sprintf($query, sql_table('plugin_option_desc'), (integer) $pid);
2373                 $resource = DB::getResult($query);
2374                 
2375                 foreach ( $resource as $row )
2376                 {
2377                         $aOIDs[] = $row['oid'];
2378                         $aOptions[$row['oid']] = array(
2379                                 'oid'                   => $row['oid'],
2380                                 'value'                 => $row['odef'],
2381                                 'name'                  => $row['oname'],
2382                                 'description'   => $row['odesc'],
2383                                 'type'                  => $row['otype'],
2384                                 'typeinfo'              => $row['oextra'],
2385                                 'contextid'             => 0
2386                         );
2387                 }
2388                 
2389                 // fill out actual values
2390                 if ( count($aOIDs) > 0 )
2391                 {
2392                         $query = 'SELECT oid, ovalue FROM %s WHERE oid in (%s)';
2393                         $query = sprintf($query, sql_table('plugin_option'), implode(',', $aOIDs));
2394                                 
2395                         $result = DB::getResult($query);
2396                         foreach ( $result as $row )
2397                         {
2398                                 $aOptions[$row['oid']]['value'] = $row['ovalue'];
2399                         }
2400                 }
2401         
2402                 // call plugins
2403                 $data = array(
2404                         'context'       =>  'global',
2405                         'plugid'        =>  $pid,
2406                         'options'       => &$aOptions
2407                 );
2408                 $manager->notify('PrePluginOptionsEdit', $data);
2409                 
2410                 if ( sizeof($aOptions) > 0 )
2411                 {
2412                         $template['content'] = 'plugoptionlist';
2413                         $this->parser->parse(showlist($aOptions, 'table', $template, $template_name));
2414                 }
2415                 else
2416                 {
2417                         echo '<p>' . _ERROR_NOPLUGOPTIONS . "</p>\n";
2418                 }
2419                 return;
2420         }
2421         
2422         /**
2423          * AdminActions::parse_editskin()
2424          * Parse skinvar editskin
2425          *
2426          * @param       string  $type   type of skin
2427          * @return      void
2428          */
2429         public function parse_editskin($type = 'id')
2430         {
2431                 global $manager;
2432                 
2433                 $skinid = intRequestVar('skinid');
2434                 
2435                 if ( !preg_match('#^admin#', $this->skintype) )
2436                 {
2437                         $skin =& $manager->getSKIN($skinid);
2438                 }
2439                 else
2440                 {
2441                         $skin =& $manager->getSKIN($skinid, 'AdminActions');
2442                 }
2443                 
2444                 switch ( $type )
2445                 {
2446                         case 'id':
2447                                 echo intRequestVar('skinid');
2448                                 break;
2449                         case 'name':
2450                                 echo Entity::hsc($skin->getName());
2451                                 break;
2452                         case 'desc':
2453                                 echo Entity::hsc($skin->getDescription());
2454                                 break;
2455                         case 'type':
2456                                 echo Entity::hsc($skin->getContentType());
2457                                 break;
2458                         case 'prefix':
2459                                 echo Entity::hsc($skin->getIncludePrefix());
2460                                 break;
2461                         case 'mode':
2462                                 $this->parse_inputyesno('inc_mode', $skin->getIncludeMode(), 120, 'skindir', 'normal', _PARSER_INCMODE_SKINDIR, _PARSER_INCMODE_NORMAL);
2463                         default:
2464                                 break;
2465                 }
2466                 return;
2467         }
2468         
2469         /**
2470          * AdminActions::parse_editskintype()
2471          * Parse skinvar editskintype
2472          *
2473          * @param       string  $type   name of type for skin type
2474          * @return      void
2475          */
2476         public function parse_editskintype($stype = 'id')
2477         {
2478                 global $manager;
2479                 
2480                 static $skin = NULL;
2481                 static $types = array();
2482                 
2483                 if ( $skin == NULL )
2484                 {
2485                         $skinid = intRequestVar('skinid');
2486                         
2487                         if ( !preg_match('#^admin#', $this->skintype) )
2488                         {
2489                                 $skin =& $manager->getSkin($skinid);
2490                         }
2491                         else
2492                         {
2493                                 $skin =& $manager->getSkin($skinid, 'AdminActions');
2494                         }
2495                         
2496                         $types = $skin->getDefaultTypes();
2497                 }
2498                 
2499                 $type = strtolower(trim(requestVar('type')));
2500                 
2501                 switch ( $stype )
2502                 {
2503                         case 'id':
2504                                 echo $skin->getID();
2505                                 break;
2506                         case 'name':
2507                                 echo Entity::hsc($skin->getName());
2508                                 break;
2509                         case 'desc':
2510                                 echo Entity::hsc($skin->getDescription());
2511                                 break;
2512                         case 'type':
2513                                 echo Entity::hsc($skin->getContentType());
2514                                 break;
2515                         case 'content':
2516                                 echo Entity::hsc($skin->getContentFromDB($type));
2517                                 break;
2518                         case 'skintype':
2519                                 if ( !array_key_exists($type, $types) )
2520                                 {
2521                                         $skinType = ucfirst($type);
2522                                 }
2523                                 else
2524                                 {
2525                                         $skinType = $types[$type];
2526                                 }
2527                                 echo Entity::hsc($skinType);
2528                                 break;
2529                         case 'skintyperaw':
2530                                 echo Entity::hsc($type);
2531                                 break;
2532                         case 'prefix':
2533                                 echo Entity::hsc($skin->getIncludePrefix());
2534                                 break;
2535                         case 'mode':
2536                                 if ( !$skin->getIncludeMode() != 'skindir' )
2537                                 {
2538                                         $incMode = _PARSER_INCMODE_NORMAL;
2539                                 }
2540                                 else
2541                                 {
2542                                         $incMode = _PARSER_INCMODE_SKINDIR;
2543                                 }
2544                                 echo Entity::hsc($incMode);
2545                                 break;
2546                         default:
2547                                 break;
2548                 }
2549                 return;
2550         }
2551         
2552         /**
2553          * AdminActions::parse_adminurl()
2554          * Parse skinvar adminurl
2555          * (shortcut for admin url)
2556          *
2557          * @param       void
2558          * @return      void
2559          */
2560         public function parse_adminurl()
2561         {
2562                 $this->parse_sitevar('adminurl');
2563                 return;
2564         }
2565         
2566         /**
2567          * AdminActions::parse_edittemplateinfo()
2568          * Parse skinvar edittemplateinfo
2569          *
2570          * @param       string  $format         format to output
2571          * @param       string  $typedesc       type of template
2572          * @param       string  $typename       type name of template
2573          * @param       string  $help           help text
2574          * @param       string  $tabindex       index value for tabindex attribute of input element
2575          * @param       string  $big            textarea size
2576          * @param       string  $tplt           name of template to be filled
2577          * @return      boolean
2578          */
2579         public function parse_edittemplateinfo($format, $typedesc = '', $typename = '', $help = '', $tabindex = 0, $big = 0, $template_name = '')
2580         {
2581                 global $manager;
2582                 static $id = NULL;
2583                 static $name = NULL;
2584                 static $desc = NULL;
2585                 
2586                 if ( $id == NULL )
2587                 {
2588                         $id = intRequestVar('templateid');
2589                 }
2590                 
2591                 if ( $name == NULL )
2592                 {
2593                         $name = Template::getNameFromId($id);
2594                 }
2595                 
2596                 if ( $desc == NULL )
2597                 {
2598                         $desc = Template::getDesc($id);
2599                 }
2600                 
2601                 $template =& $manager->getTemplate($name);
2602                 
2603                 switch ( $format )
2604                 {
2605                         case 'id':
2606                                 echo (integer) $id;
2607                                 break;
2608                         case 'name':
2609                                 echo Entity::hsc($name);
2610                                 break;
2611                         case 'desc':
2612                                 echo Entity::hsc($desc);
2613                                 break;
2614                         case 'extratemplate':
2615                                 $tabidx = 600;
2616                                 $pluginfields = array();
2617                                 if ( !preg_match('#^admin/#', $this->skintype) )
2618                                 {
2619                                         $manager->notify('TemplateExtraFields', array('fields' => &$pluginfields));
2620                                 }
2621                                 else
2622                                 {
2623                                         $manager->notify('AdminTemplateExtraFields', array('fields' => &$pluginfields));
2624                                 }
2625                                 
2626                                 foreach ( $pluginfields as $ptkey => $ptvalue )
2627                                 {
2628                                         $tmplt = array();
2629                                         if ( $desc )
2630                                         {
2631                                                 $tmplt =& $manager->getTemplate($desc);
2632                                         }
2633                                                 
2634                                         /* extra plugin field */
2635                                         if ( !array_key_exists('TEMPLATE_EDIT_EXPLUGNAME', $tmplt) || empty($tmplt['TEMPLATE_EDIT_EXPLUGNAME']) )
2636                                         {
2637                                                 $base = "</tr>\n"
2638                                                       . "<tr>\n"
2639                                                       . "<th colspan=\"2\"><%explugtplname%></th>\n";
2640                                         }
2641                                         else
2642                                         {
2643                                                 $base = $tmplt['TEMPLATE_EDIT_EXPLUGNAME'];
2644                                         }
2645                                         $data = array(
2646                                                 'explugtplname' => Entity::hsc($ptkey)
2647                                         );
2648                                         echo Template::fill($base, $data);
2649                                                 
2650                                         foreach ( $ptvalue as $ptname => $ptdesc )
2651                                         {
2652                                                 if ( !array_key_exists($ptname, $template) )
2653                                                 {
2654                                                         $content = '';
2655                                                 }
2656                                                 else
2657                                                 {
2658                                                         $content = $template[$ptname];
2659                                                 }
2660                                                 $this->parser->parse(listplug_templateEditRow($content, $ptdesc, $ptname, $help, $tabidx++, $big, $template_name));
2661                                                 continue;
2662                                         }
2663                                 }
2664                                 break;
2665                         default:
2666                                 $typedesc = defined($typedesc) ? constant($typedesc) : $typedesc;
2667                                 $typename = defined($typename) ? constant($typename) : $typename;
2668                                 
2669                                 if ( !array_key_exists($typename, $template) )
2670                                 {
2671                                         $content = '';
2672                                 }
2673                                 else
2674                                 {
2675                                         $content = $template[$typename];
2676                                 }
2677                                 $this->parser->parse(listplug_templateEditRow($content, $typedesc, $typename, $help, $tabindex, $big, $template_name));
2678                                 break;
2679                 }
2680                 
2681                 return;
2682         }
2683         
2684         /**
2685          * AdminActions::parse_eventformextra()
2686          * Parse skinvar eventformextra
2687          *
2688          * @param       string  $type   name of type for event form extra
2689          * @return      void
2690          */
2691         public function parse_eventformextra($type = 'activation')
2692         {
2693                 global $manager;
2694                 
2695                 $data = array();
2696                 
2697                 switch ( $type )
2698                 {
2699                         case 'activation':
2700                                 $key = requestVar('ackey');
2701                                 if ( !$key )
2702                                 {
2703                                         Admin::error(_ERROR_ACTIVATE);
2704                                 }
2705                                 $info = MEMBER::getActivationInfo($key);
2706                                 if ( !$info )
2707                                 {
2708                                         Admin::error(_ERROR_ACTIVATE);
2709                                 }
2710                                 $mem  =& $manager->getMember($info->vmember);
2711                                 if ( !$mem )
2712                                 {
2713                                         Admin::error(_ERROR_ACTIVATE);
2714                                 }
2715                                 $data = array(
2716                                         'type'          => 'activation',
2717                                         'member'        => $mem
2718                                 );
2719                                 break;
2720                         case 'membermailform-notloggedin':
2721                                 $data = array('type' => 'membermailform-notloggedin',);
2722                                 break;
2723                 }
2724                 $manager->notify('FormExtra', $data);
2725                 return;
2726         }
2727         
2728         /**
2729          * AdminActions::parse_extrahead()
2730          * Parse skinvar extrahead
2731          */
2732         public function parse_extrahead()
2733         {
2734                 global $manager;
2735                 
2736                 $extrahead = Admin::getAdminextrahead();
2737                 
2738                 $data = array(
2739                         'extrahead'     => &$extrahead,
2740                         'action'        => Admin::getAdminAction()
2741                 );
2742                 
2743                 $manager->notify('AdminPrePageHead', $data);
2744                 
2745                 $this->parser->parse($extrahead);
2746                 return;
2747         }
2748         
2749         /**
2750          * AdminActions::parse_member()
2751          * Parse skinvar member
2752          * (includes a member info thingie)
2753          *
2754          * @param       string  $what   which memberdata is needed
2755          * @return      void
2756          */
2757         public function parse_member($what)
2758         {
2759                 global $memberinfo, $member, $CONF;
2760                 
2761                 // 1. only allow the member-details-page specific variables on member pages
2762                 if ( $this->skintype == 'member' )
2763                 {
2764                         switch( $what )
2765                         {
2766                                 case 'name':
2767                                         echo Entity::hsc($memberinfo->getDisplayName());
2768                                         break;
2769                                 case 'realname':
2770                                         echo Entity::hsc($memberinfo->getRealName());
2771                                         break;
2772                                 case 'notes':
2773                                         echo Entity::hsc($memberinfo->getNotes());
2774                                         break;
2775                                 case 'url':
2776                                         echo Entity::hsc($memberinfo->getURL());
2777                                         break;
2778                                 case 'email':
2779                                         echo Entity::hsc($memberinfo->getEmail());
2780                                         break;
2781                                 case 'id':
2782                                         echo Entity::hsc($memberinfo->getID());
2783                                         break;
2784                         }
2785                 }
2786                 
2787                 // 2. the next bunch of options is available everywhere, as long as the user is logged in
2788                 if ( $member->isLoggedIn() )
2789                 {
2790                         switch( $what )
2791                         {
2792                                 case 'yourname':
2793                                         echo $member->getDisplayName();
2794                                         break;
2795                                 case 'yourrealname':
2796                                         echo $member->getRealName();
2797                                         break;
2798                                 case 'yournotes':
2799                                         echo $member->getNotes();
2800                                         break;
2801                                 case 'yoururl':
2802                                         echo $member->getURL();
2803                                         break;
2804                                 case 'youremail':
2805                                         echo $member->getEmail();
2806                                         break;
2807                                 case 'yourid':
2808                                         echo $member->getID();
2809                                         break;
2810                                 case 'yourprofileurl':
2811                                         if ( $CONF['URLMode'] == 'pathinfo' )
2812                                         {
2813                                                 echo Link::create_member_link($member->getID());
2814                                         }
2815                                         else
2816                                         {
2817                                                 echo $CONF['IndexURL'] . Link::create_member_link($member->getID());
2818                                         }
2819                                         break;
2820                         }
2821                 }
2822                 return;
2823         }
2824         
2825         /**
2826          * AdminActions::parse_version()
2827          * Parse skinvar version
2828          * (include nucleus versionnumber)
2829          *
2830          * @param       void
2831          * @return      void
2832          */
2833         public function parse_version()
2834         {
2835                 global $nucleus;
2836                 echo 'Nucleus CMS ' . $nucleus['version'];
2837                 return;
2838         }
2839         
2840         /**
2841          * AdminActions::parse_sitevar()
2842          * Parse skinvar sitevar
2843          * (include a sitevar)
2844          *
2845          * @param       string  $which
2846          * @return      void
2847          */
2848         public function parse_sitevar($which)
2849         {
2850                 global $CONF;
2851                 switch ( $which )
2852                 {
2853                         case 'url':
2854                                 echo $CONF['IndexURL'];
2855                                 break;
2856                         case 'name':
2857                                 echo $CONF['SiteName'];
2858                                 break;
2859                         case 'admin':
2860                                 echo $CONF['AdminEmail'];
2861                                 break;
2862                         case 'adminurl':
2863                                 echo $CONF['AdminURL'];
2864                                 break;
2865                 }
2866                 return;
2867         }
2868         
2869         /**
2870          * AdminActions::parse_actionurl()
2871          * Parse $CONF;
2872          *
2873          * @param       void
2874          * @return      void
2875          */
2876         public function parse_actionurl()
2877         {
2878                 global $CONF;
2879                 echo Entity::hsc($CONF['ActionURL']);
2880                 return;
2881         }
2882         
2883         /**
2884          * AdminActions::parse_getblogsetting()
2885          * Parse skinvar getblogsetting
2886          */
2887         public function parse_getblogsetting($which)
2888         {
2889                 global $blog, $manager;
2890                 
2891                 if ( $blog )
2892                 {
2893                         $b =& $blog;
2894                 }
2895                 elseif ( $bid = intRequestVar('blogid') )
2896                 {
2897                         $b =& $manager->getBlog($bid);
2898                 }
2899                 else
2900                 {
2901                         return;
2902                 }
2903         
2904                 switch ( $which )
2905                 {
2906                         case 'id':
2907                                 return Entity::hsc($b->getID());
2908                                 break;
2909                         case 'url':
2910                                 return Entity::hsc($b->getURL());
2911                                 break;
2912                         case 'name':
2913                                 return Entity::hsc($b->getName());
2914                                 break;
2915                         case 'desc':
2916                                 return Entity::hsc($b->getDescription());
2917                                 break;
2918                         case 'short':
2919                                 return Entity::hsc($b->getShortName());
2920                                 break;
2921                         case 'notifyaddress':
2922                                 return Entity::hsc($b->getNotifyAddress());
2923                                 break;
2924                         case 'maxcomments':
2925                                 return Entity::hsc($b->getMaxComments());
2926                                 break;
2927                         case 'updatefile':
2928                                 return Entity::hsc($b->getUpdateFile());
2929                                 break;
2930                         case 'timeoffset':
2931                                 return Entity::hsc($b->getTimeOffset());
2932                                 break;
2933                 }
2934                 return;
2935         }
2936         
2937         /**
2938          * AdminActions::parse_geteditpluginfo()
2939          * Parse skinvar geteditpluginfo
2940          *
2941          * @param       string  $type   name of setting for edit plugin info
2942          * @return      void
2943          */
2944         public function parse_geteditpluginfo($type)
2945         {
2946                 global $manager;
2947                 $pid = intRequestVar('plugid');
2948                 switch ( $type )
2949                 {
2950                         case 'id':
2951                                 return $pid;
2952                                 break;
2953                         case 'name':
2954                                 return Entity::hsc($manager->getPluginNameFromPid($pid));
2955                                 break;
2956                 }
2957                 return;
2958         }
2959         
2960         /**
2961          * AdminActions::parse_getmember()
2962          * Parse skinvar getmember
2963          * (includes a member info thingie)
2964          *
2965          * @param       string  $what   name of setting for member
2966          * @return      void
2967          */
2968         public function parse_getmember($what)
2969         {
2970                 global $memberinfo, $member;
2971                 // 1. only allow the member-details-page specific variables on member pages
2972                 if ( $this->skintype == 'member' )
2973                 {
2974                         switch ( $what )
2975                         {
2976                                 case 'name':
2977                                         return Entity::hsc($memberinfo->getDisplayName());
2978                                         break;
2979                                 case 'realname':
2980                                         return Entity::hsc($memberinfo->getRealName());
2981                                         break;
2982                                 case 'notes':
2983                                         return Entity::hsc($memberinfo->getNotes());
2984                                         break;
2985                                 case 'url':
2986                                         return Entity::hsc($memberinfo->getURL());
2987                                         break;
2988                                 case 'email':
2989                                         return Entity::hsc($memberinfo->getEmail());
2990                                         break;
2991                                 case 'id':
2992                                         return Entity::hsc($memberinfo->getID());
2993                                         break;
2994                         }
2995                 }
2996                 // 2. the next bunch of options is available everywhere, as long as the user is logged in
2997                 if ( $member->isLoggedIn() )
2998                 {
2999                         switch ( $what )
3000                         {
3001                                 case 'yourname':
3002                                         return $member->getDisplayName();
3003                                         break;
3004                                 case 'yourrealname':
3005                                         return $member->getRealName();
3006                                         break;
3007                                 case 'yournotes':
3008                                         return $member->getNotes();
3009                                         break;
3010                                 case 'yoururl':
3011                                         return $member->getURL();
3012                                         break;
3013                                 case 'youremail':
3014                                         return $member->getEmail();
3015                                         break;
3016                                 case 'yourid':
3017                                         return $member->getID();
3018                                         break;
3019                         }
3020                 }
3021                 return;
3022         }
3023         
3024         /**
3025          * AdminActions::parse_headmessage()
3026          * Parse skinvar headmessage
3027          *
3028          * @param       void
3029          * @return      void
3030          */
3031         public function parse_headmessage()
3032         {
3033                 if ( !empty(Admin::$headMess) )
3034                 {
3035                         echo '<p>' . _MESSAGE . ': ' . Entity::hsc(Admin::$headMess) . "</p>\n";
3036                 }
3037                 return;
3038         }
3039         
3040         /**
3041          * AdminActions::parse_helplink()
3042          * Parse skinvar helplink
3043          *
3044          * @param       string  $topic  name of topic for help
3045          * @return      void
3046          */
3047         public function parse_helplink($topic = '')
3048         {
3049                 if ( !empty($topic) )
3050                 {
3051                         help($topic);
3052                 }
3053                 return;
3054         }
3055         
3056         /**
3057          * AdminActions::parse_helpplugname()
3058          * Parse skinvar helpplugname
3059          *
3060          * @param       void
3061          * @return      void
3062          */
3063         public function parse_helpplugname()
3064         {
3065                 $plugid = intGetVar('plugid');
3066                 Entity::hsc($manager->getPluginNameFromPid($plugid));
3067                 return;
3068         }
3069         
3070         /**
3071          * AdminActions::parse_ilistaddnew()
3072          * Parse skinvar ilistaddnew
3073          *
3074          * @param       void
3075          * @return      void
3076          */
3077         public function parse_ilistaddnew()
3078         {
3079                 $blogid = intRequestVar('blogid');
3080                 if ( intPostVar('start') == 0 )
3081                 {
3082                         echo '<p><a href="index.php?action=createitem&amp;blogid=' . $blogid . '">' . _ITEMLIST_ADDNEW . "</a></p>\n";
3083                 }
3084                 return;
3085         }
3086         
3087         /**
3088          * AdminActions::parse_importskininfo()
3089          * Parse skinvar importskininfo
3090          *
3091          * @param       string  $type   name of information for imported skin
3092          * @return      void
3093          */
3094         public function parse_importskininfo($type)
3095         {
3096                 switch ( $type )
3097                 {
3098                         case 'info':
3099                                 echo Entity::hsc(requestVar('skininfo'));
3100                                 break;
3101                         case 'snames':
3102                                 $dataArr = requestArray('skinnames');
3103                                 echo implode(' <em>' . _AND . '</em> ', $dataArr);
3104                                 break;
3105                         case 'tnames':
3106                                 $dataArr = requestArray('tpltnames');
3107                                 echo implode(' <em>' . _AND . '</em> ', $dataArr);
3108                                 break;
3109                         case 'sclashes':
3110                                 $dataArr = requestArray('skinclashes');
3111                                 echo implode(' <em>' . _AND . '</em> ', $dataArr);
3112                                 break;
3113                         case 'tclashes':
3114                                 $dataArr = requestArray('tpltclashes');
3115                                 echo implode(' <em>' . _AND . '</em> ', $dataArr);
3116                                 break;
3117                         case 'skinfile':
3118                                 echo Entity::hsc(requestVar('skinfile'));
3119                                 break;
3120                         case 'mode':
3121                                 echo Entity::hsc(requestVar('mode'));
3122                                 break;
3123                 }
3124                 return;
3125         }
3126         
3127         /**
3128          * AdminActions::parse_init()
3129          * some init stuff for all forms
3130          *
3131          * @param       void
3132          * @return      void
3133          */
3134         public function parse_init()
3135         {
3136                 global $manager;
3137                 
3138                 $authorid = '';
3139                 if ( requestVar('action') == 'itemedit' )
3140                 {
3141                         $authorid = Admin::$contents['authorid'];
3142                 }
3143                 
3144                 Admin::$blog->insertJavaScriptInfo($authorid);
3145                 return;
3146         }
3147         
3148         /**
3149          * AdminActions::parse_inputyesno()
3150          * Parse skinvar inputyesno
3151          *
3152          * @param       string  $name
3153          * @param       string  $checkedval
3154          * @param       string  $tabindex
3155          * @param       string  $value1
3156          * @param       string  $value2
3157          * @param       string  $yesval
3158          * @param       string  $noval
3159          * @param       string  $isAdmin
3160          * @param       string  $template_name
3161          * @return      void
3162          */
3163         public function parse_inputyesno($name, $checkedval, $tabindex = 0, $value1 = 1, $value2 = 0, $yesval = _YES, $noval = _NO, $isAdmin = 0, $template_name = '')
3164         {
3165                 $this->parser->parse(listplug_input_yesno($name, $checkedval, $tabindex, $value1, $value2, $yesval, $noval, $isAdmin, $template_name));
3166                 return;
3167         }
3168         
3169         /**
3170          * AdminActions::parse_insertpluginfo()
3171          * Parse templatevar insertpluginfo
3172          */
3173         public function parse_insertpluginfo($type)
3174         {
3175                 $option = Admin::getAdminaOption();
3176                 switch ( $type )
3177                 {
3178                         case 'id':
3179                                 return $option['pid'];
3180                                 break;
3181                         case 'name':
3182                                 return Entity::hsc($option['pfile']);
3183                                 break;
3184                 }
3185                 return;
3186         }
3187         
3188         /**
3189          * AdminActions::parse_insplugoptcontent()
3190          * Parse skinvar insplugoptcontent
3191          *
3192          * @param       void
3193          * @return      void
3194          */
3195         public function parse_insplugoptcontent()
3196         {
3197                 $option = Admin::getAdminaOption();
3198                 
3199                 $meta = NucleusPlugin::getOptionMeta($option['typeinfo']);
3200                 if ( array_key_exists('access', $meta) && $meta['access'] != 'hidden' )
3201                 {
3202                         echo '<tr>';
3203                         listplug_plugOptionRow($option);
3204                         echo '</tr>';
3205                 }
3206                 return;
3207         }
3208         
3209         /**
3210          * AdminActions::parse_iprangeinput()
3211          * Parse skinvar iprangeinput
3212          *
3213          * @param       void
3214          * @return      void
3215          */
3216         public function parse_iprangeinput()
3217         {
3218                 if ( requestVar('ip') )
3219                 {
3220                         $iprangeVal = Entity::hsc(requestVar('ip'));
3221                         echo "<input name=\"iprange\" type=\"radio\" value=\"{$iprangeVal}\" checked=\"checked\" id=\"ip_fixed\" />\n";
3222                         echo "<label for=\"ip_fixed\">{$iprangeVal}</label><br />\n";
3223                         echo '<input name="iprange" type="radio" value="custom" id="ip_custom" />' . "\n";
3224                         echo '<label for="ip_custom">' . _BAN_IP_CUSTOM . '</label>' . "\n";
3225                         echo "<input name=\"customiprange\" value=\"{$iprangeVal}\" maxlength=\"15\" size=\"15\" />\n";
3226                 }
3227                 else
3228                 {
3229                         echo '<input name="iprange" value="custom" type="hidden" />' . "\n";
3230                         echo '<input name="customiprange" value="" maxlength="15" size="15" />' . "\n";
3231                 }
3232                 return;
3233         }
3234         
3235         /**
3236          * AdminActions::parse_itemnavlist()
3237          * Parse skinvar itemnavlist
3238          *
3239          * @param       void
3240          * @return      void
3241          */
3242         public function parse_itemnavlist($template_name)
3243         {
3244                 global $CONF, $manager, $member;
3245                 
3246                 $query  = "SELECT bshortname, cname, mname, ititle, ibody, inumber, idraft, itime"
3247                       . " FROM %s, %s, %s, %s"
3248                       . " WHERE iblog=bnumber AND iauthor=mnumber AND icat=catid";
3249                 
3250                 $query = sprintf($query, sql_table('item'), sql_table('blog'), sql_table('member'), sql_table('category'));
3251                 
3252                 if ( $this->skintype == 'itemlist' )
3253                 {
3254                         $blog = FALSE;
3255                         if ( array_key_exists('blogid', $_REQUEST) )
3256                         {
3257                                 $blogid = intRequestVar('blogid');
3258                         }
3259                         else if ( array_key_exists('itemid', $_REQUEST) )
3260                         {
3261                                 $itemid =  intRequestVar('itemid');
3262                                 $item   = &$manager->getItem($itemid, 1, 1);
3263                                 $blogid =  (integer) $item['blogid'];
3264                         }
3265                         $blog =& $manager->getBlog($blogid);
3266                                 
3267                         $query .= " AND iblog={$blogid}";
3268                         $template['now'] = $blog->getCorrectTime(time());
3269                                 
3270                         // non-blog-admins can only edit/delete their own items
3271                         if ( !$member->blogAdminRights($blogid) )
3272                         {
3273                                 $query .= ' AND iauthor = ' . $member->getID();
3274                         }
3275                 }
3276                 elseif ( $this->skintype == 'browseownitems' )
3277                 {
3278                         $query .= ' AND iauthor   = ' . $member->getID();
3279                         $blogid = 0;
3280                         $template['now'] = time();
3281                 }
3282                 
3283                 // search through items
3284                 $search = postVar('search');
3285                 
3286                 if ( !empty($search) )
3287                 {
3288                         $query .= ' AND ((ititle LIKE ' . DB::quoteValue('%'.$search.'%') . ') '
3289                         . '  OR  (ibody LIKE ' . DB::quoteValue('%'.$search.'%') . ') '
3290                         . '  OR  (imore LIKE ' . DB::quoteValue('%'.$search.'%') . '))';
3291                 }
3292                 
3293                 if ( postVar('start') )
3294                 {
3295                         $start = intPostVar('start');
3296                 }
3297                 else
3298                 {
3299                         $start = 0;
3300                 }
3301                 
3302                 // amount of items to show
3303                 if ( postVar('amount') )
3304                 {
3305                         $amount = intPostVar('amount');
3306                 }
3307                 else
3308                 {
3309                         $amount = (integer) $CONF['DefaultListSize'];
3310                         if ( $amount < 1 )
3311                         {
3312                                 $amount = 10;
3313                         }
3314                 }
3315                 
3316                 $query .= ' ORDER BY itime DESC'
3317                         . " LIMIT {$start},{$amount}";
3318                 
3319                 $resource = DB::getResult($query);
3320                 if ( $resource->rowCount() > 0 )
3321                 {
3322                         $template['action'] = $this->skintype;
3323                         $template['start'] = $start;
3324                         $template['amount'] = $amount;
3325                         $template['minamount'] = 0;
3326                         $template['maxamount'] = 1000;
3327                         $template['blogid'] = $blogid;
3328                         $template['search'] = $search;
3329                         $template['itemid'] = 0;
3330                                 
3331                         $template['content'] = 'itemlist';
3332                                 
3333                         $this->parser->parse(listplug_navlist('item', $query, 'table', $template));
3334                 }
3335                 else
3336                 {
3337                         /* TODO: nothing to be shown */
3338                 }
3339                 $resource->closeCursor();
3340
3341                 return;
3342         }
3343         
3344         /**
3345          * AdminActions::parse_itemtime()
3346          * date change on edit item
3347          *
3348          * @param       string  $key    key of PHP's getDate()
3349          * @return      void
3350          */
3351         public function parse_itemtime($key)
3352         {
3353                 global $manager;
3354                 
3355                 $item = false;
3356                 $itemid = intRequestVar('itemid');
3357                 $item =& $manager->getItem($itemid, 1, 1);
3358                 
3359                 if ( $item )
3360                 {
3361                         $blog =& $manager->getBlog($item['blogid']);
3362                         
3363                         if ( $blog->convertBreaks() && requestVar('action') == 'itemedit' )
3364                         {
3365                                 $item['body'] = removeBreaks($item['body']);
3366                                 $item['more'] = removeBreaks($item['more']);
3367                         }
3368                 }
3369                 
3370                 $contents = array();
3371                 if ( requestVar('action') == 'itemedit' )
3372                 {
3373                         $contents = $item;
3374                 }
3375                 elseif ( requestVar('action') == 'createitem' )
3376                 {
3377                         $data = array(
3378                                 'contents'      => &$contents,
3379                                 'blog'          => &$this->blog
3380                         );
3381                         $manager->notify('PreAddItemForm', $data);
3382                 }
3383                 $itemtime = getdate($contents['timestamp']);
3384                 echo $itemtime[$key];
3385                 return;
3386         }
3387         
3388         /**
3389          * AdminActions::parse_jstoolbaroptions()
3390          * Parse skinvar jstoolbaroptions
3391          *
3392          * @param       void
3393          * @return      void
3394          */
3395         public function parse_jstoolbaroptions()
3396         {
3397                 global $CONF;
3398                 $options = array(
3399                         _SETTINGS_JSTOOLBAR_NONE,
3400                         _SETTINGS_JSTOOLBAR_SIMPLE,
3401                         _SETTINGS_JSTOOLBAR_FULL
3402                 );
3403                 
3404                 $i = 1;
3405                 foreach ( $options as $option )
3406                 {
3407                         $text  = "<option value=\"%d\"%s>%s</option>\n";
3408                         $extra = ($CONF['DisableJsTools'] == $i) ? ' selected="selected"' : '';
3409                         echo sprintf($text, $i, $extra, $option);
3410                         $i++;
3411                 }
3412                 return;
3413         }
3414         /**
3415          * AdminActions::parse_localeselectoptions()
3416          * Parse skinvar localeselectoptions
3417          *
3418          * @param       void
3419          * @return      void
3420          */
3421         public function parse_localeselectoptions()
3422         {
3423                 global $CONF, $member;
3424                 
3425                 $locales = i18n::get_available_locale_list();
3426                 
3427                 /* default option */
3428                 if ( $this->skintype == 'editmembersettings' )
3429                 {
3430                         if ( !$member->getLocale() )\r
3431                         {\r
3432                                 echo "<option value=\"\" selected=\"selected\">" . Entity::hsc(_MEMBERS_USESITELANG) . "</option>\n";\r
3433                         }\r
3434                         else\r
3435                         {\r
3436                                 echo "<option value=\"\">" . Entity::hsc(_MEMBERS_USESITELANG) . "</option>\n";\r
3437                         }\r
3438                 }
3439                 else
3440                 {
3441                         if ( $CONF['Locale'] == 'en_Latn_US' )\r
3442                         {\r
3443                                 echo "<option value=\"\" selected=\"selected\">" . Entity::hsc(_LOCALE_EN_LATN_US) . "</option>\n";\r
3444                         }\r
3445                         else\r
3446                         {\r
3447                                 echo "<option value=\"\">" . Entity::hsc(_LOCALE_EN_LATN_US) . "</option>\n";\r
3448                         }\r
3449                 }
3450                 
3451                 /* optional options */
3452                 foreach ( $locales as $locale )
3453                 {
3454                         if ( $this->skintype == 'editmembersettings' )\r
3455                         {
3456                                 if ( $locale != $member->getLocale() )\r
3457                                 {\r
3458                                         echo "<option value=\"{$locale}\">";\r
3459                                 }\r
3460                                 else\r
3461                                 {\r
3462                                         echo "<option value=\"{$locale}\" selected=\"selected\">";\r
3463                                 }
3464                         }
3465                         else
3466                         {
3467                                 if ( $locale == 'en_Latn_US' )
3468                                 {
3469                                         /* already output */
3470                                         continue;
3471                                 }
3472                                 else if ( $locale != $CONF['Locale'] )\r
3473                                 {\r
3474                                         echo "<option value=\"{$locale}\">";\r
3475                                 }\r
3476                                 else\r
3477                                 {\r
3478                                         echo "<option value=\"{$locale}\" selected=\"selected\">";\r
3479                                 }\r
3480                         }
3481                         $label = '_LOCALE_' . strtoupper($locale);
3482                         if ( !defined($label) )
3483                         {
3484                                 echo $locale;
3485                         }
3486                         else
3487                         {
3488                                 echo constant($label);
3489                         }
3490                         echo "</option>\n";\r
3491                 }
3492                 return;
3493         }
3494         
3495         /**
3496          * AdminActions::parse_listplugplugoptionrow()
3497          * Parse templatevar listplugplugoptionrow
3498          *
3499          * @param       string  $template_name  name of template
3500          * @return      void
3501          */
3502         public function parse_listplugplugoptionrow($template_name = '')
3503         {
3504                 echo listplug_plugOptionRow(Admin::getAdminaOption(), $template_name);
3505                 return;
3506         }
3507         
3508         /**
3509          * AdminActions::parse_mediadirwarning()
3510          * Parse skinvar mediadirwarning
3511          *
3512          * @param       void
3513          * @return      void
3514          */
3515         public function parse_mediadirwarning()
3516         {
3517                 global $DIR_MEDIA;
3518                 if ( !is_dir($DIR_MEDIA) )
3519                 {
3520                         echo "<br /><b>" . _WARNING_NOTADIR . "</b>\n";
3521                 }
3522                 if ( !is_readable($DIR_MEDIA) )
3523                 {
3524                         echo "<br /><b>" . _WARNING_NOTREADABLE . "</b>\n";
3525                 }
3526                 if ( !is_writeable($DIR_MEDIA) )
3527                 {
3528                         echo "<br /><b>" . _WARNING_NOTWRITABLE . "</b>\n";
3529                 }
3530                 return;
3531         }
3532         
3533         /**
3534          * AdminActions::parse_movedistselect()
3535          * Parse skinvar movedistselect
3536          */
3537         public function parse_movedistselect()
3538         {
3539                 $actionType = requestVar('action');
3540                 switch ( $actionType )
3541                 {
3542                         case 'batchitem':
3543                                 $this->selectBlog('destcatid', 'category');
3544                                 break;
3545                         case 'batchcategory':
3546                                 $this->selectBlog('destblogid');
3547                                 break;
3548                         default:
3549                                 if ( $this->skintype == 'itemmove' )
3550                                 {
3551                                         $query  = "SELECT icat as result FROM %s WHERE inumber=%d;";
3552                                         $query = sprintf($query, sql_table('item'), intRequestVar('itemid'));
3553                                         $catid  = DB::getValue(sprintf($query, intRequestVar('itemid')));
3554                                         $this->selectBlog('catid', 'category', $catid, 10, 1);
3555                                 }
3556                                 break;
3557                 }
3558                 return;
3559         }
3560         
3561         /**
3562          * AdminActions::parse_moveitemid()
3563          * Parse skinvar moveitemid
3564          *
3565          * @param       void
3566          * @return      void
3567          */
3568         public function parse_moveitemid()
3569         {
3570                 echo intRequestVar('itemid');
3571                 return;
3572         }
3573         
3574         /**
3575          * AdminActions::parse_newestcompare()
3576          * Parse skinvar newestcompare
3577          *
3578          * @param       void
3579          * @return      void
3580          */
3581         public function parse_newestcompare()
3582         {
3583                 global $nucleus;
3584                 
3585                 $newestVersion  = getLatestVersion();
3586                 $newestCompare  = str_replace('/', '.', $newestVersion);
3587                 $currentVersion = str_replace(array('/', 'v'), array('.', ''), $nucleus['version']);
3588                 
3589                 if ( $newestVersion && version_compare($newestCompare, $currentVersion, '>') )
3590                 {
3591                         echo '<br /><a style="color:red" href="http://nucleuscms.org/upgrade.php" title="' . _ADMIN_SYSTEMOVERVIEW_LATESTVERSION_TITLE . '">';
3592                         echo _ADMIN_SYSTEMOVERVIEW_LATESTVERSION_TEXT . $newestVersion . '</a>';
3593                 }
3594                 return;
3595         }
3596         
3597         /**
3598          * AdminActions::parse_newmemberselect()
3599          * Parse skinvar newmemberselect
3600          *
3601          * @param       string  $template_name  name of template to use
3602          * @return      void
3603          */
3604         public function parse_newmemberselect($template_name = '')
3605         {
3606                 $blogid = intRequestVar('blogid');
3607                 
3608                 $query = "SELECT tmember FROM %s WHERE tblog=%d;";
3609                 $query = sprintf($query, sql_table('team'), (integer) $blogid);
3610                 $res = DB::getResult($query);
3611                 
3612                 $tmem = array();
3613                 foreach ( $res as $row )
3614                 {
3615                         $tmem[] = intval($row['tmember']);
3616                 }
3617                 
3618                 $query  = "SELECT mname as text, mnumber as value FROM %s WHERE mnumber NOT IN (%s);";
3619                 $query = sprintf($query, sql_table('member'), implode(', ', $tmem));
3620                 
3621                 $template = array(
3622                         'name'          => 'memberid',
3623                         'tabindex'      => 10000,
3624                         'selected'      => 0
3625                 );
3626                 $this->parser->parse(showlist($query, 'select', $template, $template_name));
3627                 return;
3628         }
3629         
3630         /**
3631          * AdminActions::parse_newpluginlist()
3632          * Parse skinvar newpluginlist
3633          *
3634          * @param       void
3635          * @return      void
3636          */
3637         public function parse_newpluginlist()
3638         {
3639                 $candidates = $this->newPlugCandidates;
3640                 foreach ( $candidates as $name )
3641                 {
3642                         echo '<option value="NP_' . $name . '">' . Entity::hsc($name) . "</option>\n";
3643                 }
3644                 return;
3645         }
3646         
3647         /**
3648          * AdminActions::parse_outputspecialdirs()
3649          * Parse skinvar outputspecialdirs
3650          *
3651          * @param       string  $type   type of setting for directory
3652          * @return      void
3653          */
3654         public function parse_outputspecialdirs($type)
3655         {
3656                 global $DIR_MEDIA, $DIR_NUCLEUS;
3657                 
3658                 switch ( $type )
3659                 {
3660                         case 'nucleusdir':
3661                                 echo Entity::hsc($DIR_NUCLEUS);
3662                                 break;
3663                         case 'mediadir':
3664                                 echo Entity::hsc($DIR_MEDIA);
3665                                 break;
3666                 }
3667                 return;
3668         }
3669         
3670         /**
3671          * AdminActions::parse_passrequestvars()
3672          * Parse skinvar passrequestvars
3673          *
3674          * @param       void
3675          * @return      void
3676          */
3677         public function parse_passrequestvars()
3678         {
3679                 $passvar   = Admin::getAdminpassvar();
3680                 $oldaction = postVar('oldaction');
3681                 
3682                 if ( ($oldaction != 'logout')
3683                 && ($oldaction != 'login')
3684                 && $passvar
3685                 && !postVar('customaction') )
3686                 {
3687                         passRequestVars();
3688                 }
3689                 return;
3690         }
3691         
3692         /**
3693          * AdminActions::parse_pluginextras()
3694          * Parse skinvar pluginextras
3695          *
3696          * @param       string  $type   type of plugin context
3697          * @return      void
3698          */
3699         public function parse_pluginextras($type = 'global')
3700         {
3701                 global $manager;
3702                 
3703                 switch ( $type )
3704                 {
3705                         case 'member':
3706                                 $id  = intRequestVar('memberid');
3707                                 $mem =& $manager->getMember($id);
3708                                 $manager->notify('MemberSettingsFormExtras', array('member' => &$mem));
3709                                 break;
3710                         case 'blog':
3711                                 $id  = intRequestVar('blogid');
3712                                 $blg =& $manager->getBlog($id);
3713                                 $manager->notify('BlogSettingsFormExtras', array('member' => &$blg));
3714                                 break;
3715                         case 'createaccount':
3716                                 $data = array(
3717                                         'type'          => 'createaccount.php',
3718                                         'prelabel'      => '',
3719                                         'postlabel'     => '<br />',
3720                                         'prefield'      => '',
3721                                         'postfield'     => '<br /><br />'
3722                                 );
3723                                 $manager->notify('RegistrationFormExtraFields', $data);
3724                                 break;
3725                         default:
3726                                 $manager->notify('GeneralSettingsFormExtras', array());
3727                                 break;
3728                 }
3729                 return;
3730         }
3731         
3732         /**
3733          * AdminActions::parse_pluginhelp()
3734          * Parse skinvar pluginhelp
3735          *
3736          * @param       void
3737          * @return      void
3738          */
3739         public function parse_pluginhelp()
3740         {
3741                 global $manager, $DIR_PLUGINS;
3742                 
3743                 $plugid = intGetVar('plugid');
3744                 $plugName = $manager->getPluginNameFromPid($plugid);
3745                 $plug =& $manager->getPlugin($plugName);
3746                 
3747                 if ( $plug->supportsFeature('HelpPage') > 0 )
3748                 {
3749                         $helpfile = $DIR_PLUGINS . $plug->getShortName() . '/help.';
3750                         if ( @file_exists($helpfile . 'php') )
3751                         {
3752                                 @include($helpfile . 'php');
3753                                 return;
3754                         }
3755                         elseif ( @file_exists($helpfile . 'html') )
3756                         {
3757                                 @include($helpfile . 'html');
3758                                 return;
3759                         }
3760                 }
3761                 echo '<p>' . _ERROR . ': ' . _ERROR_PLUGNOHELPFILE . "</p>\n";
3762                 echo '<p><a href="index.php?action=pluginlist">(' . _BACK . ")</a></p>\n";
3763                 return;
3764         }
3765         
3766         /**
3767          * AdminActions::parse_pluginlistlist()
3768          * Parse skinvar pluginlistlist
3769          *
3770          * @param       string  $template_name  name of template to use
3771          * @return      void
3772          */
3773         public function parse_pluginlistlist($template_name = '')
3774         {
3775                 $query = "SELECT * FROM %s ORDER BY porder ASC;";
3776                 $query = sprintf($query, sql_table('plugin'));
3777                 
3778                 $template['content']  = 'pluginlist';
3779                 $template['tabindex'] = 10;
3780                 
3781                 $this->parser->parse(showlist($query, 'table', $template, $template_name));
3782                 
3783                 return;
3784         }
3785         
3786         /**
3787          * AdminActions::parse_pluginoptions()
3788          * Parse skinvar pluginoptions
3789          *
3790          * @param       string  $type   type of plugin option
3791          * @return      void
3792          */
3793         public function parse_pluginoptions($context='global', $template_name='')
3794         {
3795                 global $itemid, $manager;
3796                 
3797                 switch ( $context )
3798                 {
3799                         case 'member':
3800                                 $contextid = intRequestVar('memberid');
3801                                 break;
3802                         case 'blog':
3803                                 $contextid = intRequestVar('blogid');
3804                                 break;
3805                         case 'category':
3806                                 $contextid = intRequestVar('catid');
3807                                 break;
3808                         case 'item':
3809                                 $contextid = $itemid;
3810                                 break;
3811                 }
3812                 
3813                 /* Actually registererd plugin options */
3814                 $aIdToValue = array();
3815                 $query = "SELECT oid, ovalue FROM %s WHERE ocontextid=%d;";
3816                 $query = sprintf($query, sql_table('plugin_option'), (integer) $contextid);
3817                 $res = DB::getResult($query);
3818                 foreach ( $res as $row )
3819                 {
3820                         $aIdToValue[$row['oid']] = $row['ovalue'];
3821                 }
3822                 
3823                 /* Currently available plugin options */
3824                 $query  = "SELECT * FROM %s, %s WHERE opid=pid and ocontext= %s ORDER BY porder, oid ASC;";
3825                 $query  = sprintf($query, sql_table('plugin_option_desc'), sql_table('plugin'), DB::quoteValue($context));
3826                 $res    = DB::getResult($query);
3827                 
3828                 $options = array();
3829                 foreach ($res as $row )
3830                 {
3831                         if ( !array_key_exists($row['oid'], $aIdToValue) )
3832                         {
3833                                 $value = $row['odef'];
3834                         }
3835                         else
3836                         {
3837                                 $value = $aIdToValue[$row['oid']];
3838                         }
3839                         
3840                         $options[] = array(
3841                                 'pid'                   => $row['pid'],
3842                                 'pfile'                 => $row['pfile'],
3843                                 'oid'                   => $row['oid'],
3844                                 'value'                 => $value,
3845                                 'name'                  => $row['oname'],
3846                                 'description'   => $row['odesc'],
3847                                 'type'                  => $row['otype'],
3848                                 'typeinfo'              => $row['oextra'],
3849                                 'contextid'             => $contextid,
3850                                 'extra'                 => ''
3851                         );
3852                 }
3853                 
3854                 $data = array(
3855                         'context'       =>  $context,
3856                         'contextid'     =>  $contextid,
3857                         'options'       => &$options
3858                 );
3859                 $manager->notify('PrePluginOptionsEdit', $data);
3860                 
3861                 $template = array();
3862                 if ( $template_name )
3863                 {
3864                         $templates =& $manager->getTemplate($template_name);
3865                         if ( !array_key_exists('INSERT_PLUGOPTION_TITLE', $templates) || empty($templates['INSERT_PLUGOPTION_TITLE']) )
3866                         {
3867                                 $template['title'] = "<tr>"
3868                                 . "<th colspan=\"2\"><%sprinttext(_PLUGIN_OPTIONS_TITLE, <|%insertpluginfo(name)%|>)%></th>"
3869                                 . "</tr>\n";
3870                         }
3871                         else
3872                         {
3873                                 $template['title'] = $templates['INSERT_PLUGOPTION_TITLE'];
3874                         }
3875                         
3876                         if ( !array_key_exists('INSERT_PLUGOPTION_BODY', $templates) || empty($templates['INSERT_PLUGOPTION_BODY']) )
3877                         {
3878                                 $template['body'] = "<tr>"
3879                                 . "<%listplugplugoptionrow%>"
3880                                 . "</tr>\n";
3881                         }
3882                         else
3883                         {
3884                                 $template['body'] = $templates['INSERT_PLUGOPTION_BODY'];
3885                         }
3886                 }
3887                 
3888                 $prevPid = -1;
3889                 
3890                 foreach ( $options as $option )
3891                 {
3892                         // new plugin?
3893                         if ( $prevPid != $option['pid'] )
3894                         {
3895                                 $prevPid  = $option['pid'];
3896                                 $this->parser->parse($template['title']);
3897                         }
3898                         
3899                         $meta = NucleusPlugin::getOptionMeta($option['typeinfo']);
3900                         
3901                         if ( @$meta['access'] != 'hidden' )
3902                         {
3903                                 $parsed = $this->parser->parse($template['body']);
3904                         }
3905                 }
3906         
3907                 return;
3908         }
3909         
3910         /**
3911          * AdminActions::parse_qmenuaddselect()
3912          * Parse skinvar qmanuaddselect
3913          *
3914          * @param       string  $template_name  name of template to use
3915          * @return      void
3916          */
3917         public function parse_qmenuaddselect($template_name = '')
3918         {
3919                 global $member, $blogid;
3920                 $showAll = requestVar('showall');
3921                 if ( $member->isAdmin() && ($showAll == 'yes') )
3922                 {
3923                         // Super-Admins have access to all blogs! (no add item support though)
3924                         $query =  'SELECT bnumber as value, bname as text FROM %s ORDER BY bname;';
3925                         $query = sprintf($query, sql_table('blog'));
3926                 }
3927                 else
3928                 {
3929                         $query =  'SELECT bnumber as value, bname as text FROM %s, %s WHERE tblog=bnumber and tmember=%d ORDER BY bname;';
3930                         $query = sprintf($query, sql_table('blog'), sql_table('team'), (integer) $member->getID());
3931                 }
3932                 
3933                 $template['name']               = 'blogid';
3934                 $template['tabindex']   = 15000;
3935                 $template['extra']              = _QMENU_ADD_SELECT;
3936                 $template['selected']   = 0;
3937                 $template['shorten']    = 10;
3938                 $template['shortenel']  = '';
3939                 $template['javascript'] = 'onchange="return form.submit()"';
3940                 
3941                 $this->parser->parse(showlist($query, 'select', $template, $template_name));
3942                 
3943                 return;
3944         }
3945         
3946         /**
3947          * AdminActions::parse_quickmenu()
3948          * Parse skinvar quickmenu
3949          *
3950          * @param       string  $template_name  name of template to use
3951          * @return      void
3952          */
3953         public function parse_quickmenu($template_name = '')
3954         {
3955                 global $manager;
3956                 $templates = array();
3957                 
3958                 if ( !empty($template_name) )
3959                 {
3960                         $templates = & $manager->getTemplate($template_name);
3961                 }
3962                 $pluginExtras = array();
3963                 $manager->notify('QuickMenu', array('options' => &$pluginExtras));
3964                 
3965                 $template  = array();
3966                 if ( count($pluginExtras) > 0 )
3967                 {
3968                         if ( !array_key_exists('PLUGIN_QUICKMENU_HEAD', $templates) || empty($templates['PLUGIN_QUICKMENU_HEAD']) )
3969                         {
3970                                 $template['head'] = "<h2><%text(_QMENU_PLUGINS)%></h2>\n"
3971                                 . "<ul>\n";
3972                         }
3973                         else
3974                         {
3975                                 $template['head'] = $templates['PLUGIN_QUICKMENU_HEAD'];
3976                         }
3977                         
3978                         if ( !array_key_exists('PLUGIN_QUICKMENU_BODY', $templates) && empty($templates['PLUGIN_QUICKMENU_BODY']) )
3979                         {
3980                                 $template['body'] = "<li><a href=\"<%plugadminurl%>\" title=\"<%plugadmintooltip%>\"><%plugadmintitle%></a></li>\n";
3981                         }
3982                         else
3983                         {
3984                                 $template['body'] = $templates['PLUGIN_QUICKMENU_BODY'];
3985                         }
3986                         
3987                         if ( !array_key_exists('PLUGIN_QUICKMENU_FOOT', $templates) || empty($templates['PLUGIN_QUICKMENU_FOOT']) )
3988                         {
3989                                 $template['foot'] = "</ul>\n";
3990                         }
3991                         else
3992                         {
3993                                 $template['foot'] = $templates['PLUGIN_QUICKMENU_FOOT'];
3994                         }
3995                         
3996                         $this->parser->parse($template['head']);
3997                         foreach ( $pluginExtras as $aInfo )
3998                         {
3999                                 $data = array(
4000                                         'plugadminurl'          => Entity::hsc($aInfo['url']),
4001                                         'plugadmintooltip'      => Entity::hsc($aInfo['tooltip']),
4002                                         'plugadmintitle'        => Entity::hsc($aInfo['title']),
4003                                 );
4004                                 $this->parser->parse(Template::fill($template['body'], $data));
4005                         }
4006                         $this->parser->parse($template['foot']);
4007                 }
4008                 return;
4009         }
4010         
4011         /**
4012          * AdminActions::parse_requestblogid()
4013          * Parse skinvar requestblogid
4014          *
4015          * @param       void
4016          * @return      void
4017          */
4018         public function parse_requestblogid()
4019         {
4020                 echo intRequestVar('blogid');
4021                 return;
4022         }
4023         
4024         /**
4025          * AdminActions::parse_requestiprange()
4026          * Parse skinvar requestiprange
4027          *
4028          * @param       void
4029          * @return      void
4030          */
4031         public function parse_requestiprange()
4032         {
4033                 if ( requestVar('iprange') )
4034                 {
4035                         echo Entity::hsc(requestVar('iprange'));
4036                 }
4037                 elseif ( requestVar('ip') )
4038                 {
4039                         echo Entity::hsc(requestVar('ip'));
4040                 }
4041                 return;
4042         }
4043         
4044         /**
4045          * AdminActions::parse_selectlocalskinfiles()
4046          * Parse skinvar selectlocalskinfiles
4047          *
4048          * @param       void
4049          * @return      void
4050          */
4051         public function parse_selectlocalskinfiles()
4052         {
4053                 global $DIR_SKINS;
4054                 
4055                 if ( !class_exists('SkinImport', FALSE) )
4056                 {
4057                         include_libs('skinie.php');
4058                 }
4059
4060                 if ( !preg_match('#^admin#', $this->skintype) && $this->skintype != 'importAdmin' )
4061                 {
4062                         $skindir = $DIR_SKINS;
4063                 }
4064                 else
4065                 {
4066                         $skindir = "{$DIR_SKINS}admin/";
4067                 }
4068                 
4069                 $candidates = SkinImport::searchForCandidates($skindir);
4070                 foreach ( $candidates as $skinname => $skinfile )
4071                 {
4072                         $skinfile = Entity::hsc($skinfile);
4073                         $skinname = Entity::hsc($skinname);
4074                         echo "<option value=\"{$skinfile}\">{$skinname}</option>\n";
4075                 }
4076         
4077                 return;
4078         }
4079         
4080         /**
4081          * AdminActions::parse_skineditallowedlist()
4082          * Parse skinvar skineditallowedlist
4083          *
4084          * @param       string  $type                   type of skin
4085          * @param       string  $template_name  name of template
4086          * @return      void
4087          */
4088         public function parse_skineditallowedlist($type, $template_name = '')
4089         {
4090                 switch ( $type )
4091                 {
4092                         case 'blog':
4093                                 $query = "SELECT bshortname, bname FROM %s;";
4094                                 $show  = array(
4095                                         'content' => 'shortblognames'
4096                                 );
4097                                 $query = sprintf($query, sql_table('blog'));
4098                                 break;
4099                         case 'template':
4100                                 if ( !preg_match('#^admin#', $this->skintype) )
4101                                 {
4102                                         $query = "SELECT tdname as name, tddesc as description FROM %s WHERE tdname NOT LIKE 'admin/%%';";
4103                                 }
4104                                 else
4105                                 {
4106                                         $query = "SELECT tdname as name, tddesc as description FROM %s WHERE tdname LIKE 'admin/%%';";
4107                                 }
4108                                 $show  = array(
4109                                         'content' => 'shortnames'
4110                                 );
4111                                 $query = sprintf($query, sql_table('template_desc'));
4112                                 break;
4113                 }
4114         
4115                 $this->parser->parse(showlist($query, 'table', $show, $template_name));
4116                 return;
4117         }
4118         
4119         /**
4120          * AdminActions::parse_skinielist()
4121          * Parse skinvar skinielist
4122          *
4123          * @param       string  $type                   type of skin
4124          * @param       string  $template_name  name of template to use
4125          * @return      void
4126          */
4127         public function parse_skinielist($type, $template_name = '')
4128         {
4129                 global $manager;
4130                 
4131                 $templates = array();
4132                 if ( $template_name )
4133                 {
4134                         $templates =& $manager->getTemplate($template_name);
4135                 }
4136                 if ( !array_key_exists('SKINIE_EXPORT_LIST', $templates) || empty($templates['SKINIE_EXPORT_LIST']) )
4137                 {
4138                         $template = "<td>"
4139                         . "<input type=\"checkbox\" name=\"<%typeid%>\" id=\"<%expid%>\" />\n"
4140                         . "<label for=\"<%expid%>\"><%expname%></label>\n"
4141                         . "</td>\n"
4142                         . "<td><%expdesc%></td>\n"
4143                         . "</tr>\n"
4144                         . "<tr>\n";
4145                 }
4146                 else
4147                 {
4148                         $template = $templates['SKINIE_EXPORT_LIST'];
4149                 }
4150                 
4151                 switch ( $type )
4152                 {
4153                         case 'skin':
4154                                 if ( !preg_match('#^admin#', $this->skintype) )
4155                                 {
4156                                         $res = DB::getResult('SELECT * FROM ' . sql_table('skin_desc'). " WHERE sdname NOT LIKE 'admin/%%';");
4157                                 }
4158                                 else
4159                                 {
4160                                         $res = DB::getResult('SELECT * FROM ' . sql_table('skin_desc'). " WHERE sdname LIKE 'admin/%%';");
4161                                 }
4162                                 foreach ( $res as $row )
4163                                 {
4164                                         $data = array(
4165                                                 'typeid'        => 'skin[' . $row['sdnumber'] . ']',
4166                                                 'expid'         => 'skinexp' . $row['sdnumber'],
4167                                                 'expname'       => Entity::hsc($row['sdname']),
4168                                                 'expdesc'       => Entity::hsc($row['sddesc'])
4169                                         );
4170                                         echo Template::fill($template, $data);
4171                                 }
4172                                 break;
4173                         case 'template':
4174                                 if ( !preg_match('#^admin#', $this->skintype) )
4175                                 {
4176                                         $res = DB::getResult('SELECT * FROM '.sql_table('template_desc'). " WHERE tdname NOT LIKE 'admin/%%';");
4177                                 }
4178                                 else
4179                                 {
4180                                         $res = DB::getResult('SELECT * FROM '.sql_table('template_desc'). " WHERE tdname LIKE 'admin/%%';");
4181                                 }
4182                                 foreach ( $res as $row )
4183                                 {
4184                                         $data = array(
4185                                                 'typeid'        => 'template[' . $row['tdnumber'] . ']',
4186                                                 'expid'         => 'templateexp' . $row['tdnumber'],
4187                                                 'expname'       => Entity::hsc($row['tdname']),
4188                                                 'expdesc'       => Entity::hsc($row['tddesc'])
4189                                         );
4190                                         echo Template::fill($template, $data);
4191                                 }
4192                                 break;
4193                 }
4194                 return;
4195         }
4196         
4197         /**
4198          * AdminActions::parse_skinoverview()
4199          * Parse skinvar skinoverview
4200          *
4201          * @param       string  $template_name  name of template to use
4202          * @return      void
4203          */
4204         public function parse_skinoverview($template_name = '')
4205         {
4206                 global $CONF;
4207                 
4208                 $template = array();
4209                 if ( !preg_match('#^admin#', $this->skintype) )
4210                 {
4211                         $query = "SELECT * FROM %s WHERE sdname NOT LIKE 'admin/%%' ORDER BY sdname;";
4212                         $template['editaction'] = 'skinedit';
4213                         $template['cloneaction'] = 'skinclone';
4214                         $template['deleteaction'] = 'skindelete';
4215                         $template['edittypeaction'] = 'skinedittype';
4216                         $template['default'] = $CONF['BaseSkin'];
4217                 }
4218                 else
4219                 {
4220                         $query = "SELECT * FROM %s WHERE sdname LIKE 'admin/%%' ORDER BY sdname;";
4221                         $template['editaction'] = 'adminskinedit';
4222                         $template['cloneaction'] = 'adminskinclone';
4223                         $template['deleteaction'] = 'adminskindelete';
4224                         $template['edittypeaction'] = 'adminskinedittype';
4225                         $template['default'] = $CONF['AdminSkin'];
4226                 }
4227                 $query = sprintf($query, sql_table('skin_desc'));
4228                 
4229                 $template['tabindex'] = 10;
4230                 $template['content'] = 'skinlist';
4231                 
4232                 $this->parser->parse(showlist($query, 'table', $template, $template_name));
4233                 
4234                 return;
4235         }
4236         
4237         /**
4238          * AdminActions::parse_skintypehelp()
4239          * Check editing skintypehelp
4240          *
4241          * @param       void
4242          * @return      void
4243          */
4244         public function parse_skintypehelp()
4245         {
4246                 $nowSkinType = strtolower(trim(requestVar('type')));
4247                 $pageAction  = strtolower(trim(requestVar('action')));
4248                 if ( preg_match('/^admin.*/', $pageAction) )
4249                 {
4250                         $regularType = self::$default_skin_types;
4251                         unset($regularType['memberedit']);
4252                         unset($regularType['login']);
4253                         $regularType = array_keys($regularType);
4254                 }
4255                 else
4256                 {
4257                         /* TODO: use Skin class */
4258                         $regularType = array(
4259                                 'index',
4260                                 'item',
4261                                 'archivelist',
4262                                 'archive',
4263                                 'search',
4264                                 'error',
4265                                 'member',
4266                                 'imagepopup'
4267                         );
4268                 }
4269                 
4270                 if ( in_array($nowSkinType, $regularType) )
4271                 {
4272                         help('skinpart' . $nowSkinType);
4273                 }
4274                 else
4275                 {
4276                         help('skinpartspecial');
4277                 }
4278                 return;
4279         }
4280         
4281         /**
4282          * AdminActions::parse_specialskinlist()
4283          * Parse skinvar specialskinlist
4284          *
4285          * @param       string  $template_name  name of template to use
4286          * @return      void
4287          */
4288         public function parse_specialskinlist($template_name = '')
4289         {
4290                 global $CONF, $manager;
4291                 
4292                 $template = array();
4293                 
4294                 $skinid = intRequestVar('skinid');
4295                 
4296                 if ( !preg_match('#^admin#', $this->skintype) )
4297                 {
4298                         $skin =& $manager->getSkin($skinid);
4299                         $template['editaction'] = 'skinedittype';
4300                         $template['removeaction'] = 'skinremovetype';
4301                 }
4302                 else
4303                 {
4304                         $skin =& $manager->getSkin($skinid, 'AdminActions');
4305                         $template['editaction'] = 'adminskinedittype';
4306                         $template['removeaction'] = 'adminskinremovetype';
4307                 }
4308                 $normal_types = $skin->getDefaultTypes();
4309                 $available_types = $skin->getAvailableTypes();
4310                 
4311                 $special_skintypes = array();
4312                 foreach( $available_types as $skintype => $skinname )
4313                 {
4314                         if ( !array_key_exists($skintype, $normal_types) )
4315                         {
4316                                 $special_skintypes[] = array(
4317                                         'skintype'              => $skintype,
4318                                         'skintypename'  => $skinname
4319                                 );
4320                         }
4321                 }
4322                 
4323                 if ( sizeof($special_skintypes) > 0 )
4324                 {
4325                         $template['tabindex'] = 75;
4326                         $template['skinid'] = $skin->getID();
4327                         $template['skinname'] = $skin->getName();
4328                         $this->parser->parse(showlist($special_skintypes, 'list_specialskinlist', $template, $template_name));
4329                 }
4330                 else
4331                 {
4332                         /* TODO: nothing to be shown */
4333                 }
4334         
4335                 return;
4336         }
4337         
4338         /**
4339          * AdminActions::parse_sprinttext()
4340          * Parse sprinttext
4341          *
4342          * @param       string  $which
4343          * @param       string  $val
4344          * @return      void
4345          */
4346         public function parse_sprinttext($which, $val)
4347         {
4348                 if ( !defined($which) )
4349                 {
4350                         $base = $which;
4351                 }
4352                 else
4353                 {
4354                         $base = constant($which);
4355                 }
4356                 
4357                 if ( preg_match('#[^<|%].*[^%|>]#', $val, $matchies) )
4358                 {
4359                         if ( !preg_match('#[(].*[^)]#', $matchies[0], $args) )
4360                         {
4361                                 $met = 'parse_' . $matchies[0];
4362                         }
4363                         else
4364                         {
4365                                 $arg = trim($args[0], '()');
4366                                 $met = 'parse_' . substr($matchies[0], 0, strpos($matchies[0], '('));
4367                         }
4368                         
4369                         if ( method_exists($this, $met) )
4370                         {
4371                                 $value = call_user_func(array(&$this, $met), $arg);
4372                         }
4373                 }
4374                 
4375                 if ( !isset($value) || empty($value) )
4376                 {
4377                         $value = $val;
4378                 }
4379                 echo sprintf($base, $value);
4380                 return;
4381         }
4382         
4383         /**
4384          * AdminActions::parse_systemsettings()
4385          * Parse skinvar systemsettings
4386          *
4387          * @param       string  $type                   type of settings for system
4388          * @param       string  $template_name  name of template to use
4389          * @return      void
4390          */
4391         public function parse_systemsettings($type = 'phpinfo', $template_name = '')
4392         {
4393                 global $manager, $member, $CONF, $nucleus;
4394                 
4395                 $member->isAdmin() or Admin::disallow();
4396                 
4397                 $enable  = _ADMIN_SYSTEMOVERVIEW_ENABLE;
4398                 $disable = _ADMIN_SYSTEMOVERVIEW_DISABLE;
4399                 
4400                 switch ( $type )
4401                 {
4402                         case 'phpversion':
4403                                 echo phpversion();
4404                                 break;
4405                         case 'sqlserverinfo':
4406                                 echo DB::getAttribute(PDO::ATTR_SERVER_VERSION);
4407                                 break;
4408                         case 'sqlclientinfo':
4409                                 echo DB::getAttribute(PDO::ATTR_CLIENT_VERSION);
4410                                 break;
4411                         case 'magicquotesgpc':
4412                                 echo ini_get('magic_quotes_gpc') ? 'On' : 'Off';
4413                                 break;
4414                         case 'magicquotesruntime':
4415                                 echo ini_get('magic_quotes_runtime') ? 'On' : 'Off';
4416                                 break;
4417                         case 'registerglobals':
4418                                 echo ini_get('register_globals') ? 'On' : 'Off';
4419                                 break;
4420                         case 'gdinfo':
4421                                 $templates = array();
4422                                 if ( $template_name )
4423                                 {
4424                                         $templates =& $manager->getTemplate($template_name);
4425                                 }
4426                                 if ( !array_key_exists('SYSTEMINFO_GDSETTINGS', $templates) || empty($templates['SYSTEMINFO_GDSETTINGS']) )
4427                                 {
4428                                         $template = "<tr>\n"
4429                                         . "<td><%key%></td>\n"
4430                                         . "<td><%value%></td>\n"
4431                                         . "</tr>\n";
4432                                 }
4433                                 else
4434                                 {
4435                                         $template = $templates['SYSTEMINFO_GDSETTINGS'];
4436                                 }
4437                                 
4438                                 $gdinfo = gd_info();
4439                                 
4440                                 foreach ( $gdinfo as $key => $value )
4441                                 {
4442                                         if ( is_bool($value) )
4443                                         {
4444                                                 $value = $value ? $enable : $disable;
4445                                         }
4446                                         else
4447                                         {
4448                                                 $value = Entity::hsc($value);
4449                                         }
4450                                         $data = array(
4451                                                 'key'   => $key,
4452                                                 'value' => $value,
4453                                         );
4454                                         echo Template::fill($template, $data);
4455                                 }
4456                                 break;
4457                         case 'modrewrite':
4458                                 ob_start();
4459                                 phpinfo(INFO_MODULES);
4460                                 $im = ob_get_contents();
4461                                 ob_end_clean();
4462                                 echo ( i18n::strpos($im, 'mod_rewrite') !== FALSE ) ? $enable : $disable;
4463                                 break;
4464                         case 'nucleusversion':
4465                                 echo getNucleusVersion() / 100 . '(' . $nucleus['version'] . ')';
4466                                 break;
4467                         case 'nucleuspatchlevel':
4468                                 echo getNucleusPatchLevel();
4469                                 break;
4470                         case 'confself':
4471                                 echo $CONF['Self'];
4472                                 break;
4473                         case 'confitemurl':
4474                                 echo $CONF['ItemURL'];
4475                                 break;
4476                         case 'alertonheaderssent':
4477                                 echo $CONF['alertOnHeadersSent'] ? $enable : $disable;
4478                                 break;
4479                         case 'nucleuscodename':
4480                                 if ( $nucleus['codename'] != '' )
4481                                 {
4482                                         echo ' &quot;' . $nucleus['codename'] . '&quot;';
4483                                 }
4484                                 break;
4485                         case 'versioncheckurl':
4486                                 echo sprintf(_ADMIN_SYSTEMOVERVIEW_VERSIONCHECK_URL, getNucleusVersion(), getNucleusPatchLevel());
4487                                 break;
4488                 }
4489                 return;
4490         }
4491         
4492         /**
4493          * AdminActions::parse_templateoverview()
4494          * Parse skinvar templateoverview
4495          *
4496          * @param       string  $template_name  name of template to use
4497          * @return      void
4498          */
4499         public function parse_templateoverview($template_name = '')
4500         {
4501                 if ( !preg_match('#^admin#', $this->skintype) )
4502                 {
4503                         $query = "SELECT * FROM %s WHERE tdname NOT LIKE 'admin/%%' ORDER BY tdname;";
4504                         $template['deleteaction'] = 'templatedelete';
4505                         $template['editaction'] = 'templateedit';
4506                         $template['cloneaction'] = 'templateclone';
4507                 }
4508                 else
4509                 {
4510                         $query = "SELECT * FROM %s WHERE tdname LIKE 'admin/%%' ORDER BY tdname;";
4511                         $template['deleteaction'] = 'admintemplatedelete';
4512                         $template['editaction'] = 'admintemplateedit';
4513                         $template['cloneaction'] = 'admintemplateclone';
4514                 }
4515                 $query = sprintf($query, sql_table('template_desc'));
4516                 
4517                 $template['tabindex'] = 10;
4518                 $template['content'] = 'templatelist';
4519                 
4520                 $this->parser->parse(showlist($query, 'table', $template, $template_name));
4521                 
4522                 return;
4523         }
4524         
4525         /**
4526          * AdminActions::parse_ticket()
4527          * Parse ticket
4528          *
4529          * @param       void
4530          * @return      void
4531          */
4532         public function parse_ticket()
4533         {
4534                 global $manager;
4535                 $manager->addTicketHidden();
4536                 return;
4537         }
4538         
4539         /**
4540          * AdminActions::parse_versioncheckurl()
4541          * Parse skinvar versioncheckurl
4542          *
4543          * @param       void
4544          * @return      void
4545          */
4546         public function parse_versioncheckurl()
4547         {
4548                 echo sprintf(_ADMIN_SYSTEMOVERVIEW_VERSIONCHECK_URL, getNucleusVersion(), getNucleusPatchLevel());
4549                 return;
4550         }
4551         
4552         /**
4553          * AdminActions::parse_yrbloglist()
4554          * Parse skinvar yrbloglist
4555          *
4556          * @param       string  $template_name  name of template to use
4557          * @return      void
4558          */
4559         public function parse_yrbloglist($template_name = '')
4560         {
4561                 global $member;
4562                 $showAll = requestVar('showall');
4563                 
4564                 if ( $member->isAdmin() && ($showAll == 'yes') )
4565                 {
4566                         // Super-Admins have access to all blogs! (no add item support though)
4567                         $query =  "SELECT bnumber, bname, 1 as tadmin, burl, bshortname"
4568                         . " FROM %s"
4569                         . " ORDER BY bnumber;";
4570                         $query = sprintf($query, sql_table('blog'));
4571                 }
4572                 else
4573                 {
4574                         $query = "SELECT bnumber, bname, tadmin, burl, bshortname"
4575                         . " FROM %s,%s"
4576                         . " WHERE tblog=bnumber and tmember=%d"
4577                         . " ORDER BY bnumber;";
4578                         $query = sprintf($query, sql_table('blog'), sql_table('team'), (integer) $member->getID());
4579                 }
4580                 
4581                 $resource = DB::getResult($query);
4582                 if ( ($showAll != 'yes') && $member->isAdmin() )
4583                 {
4584                         $query = 'SELECT COUNT(*) as result FROM ' . sql_table('blog');
4585                         $total = DB::getValue($query);
4586                                 
4587                         if ( $total > $resource->rowCount() )
4588                         {
4589                                 echo '<p><a href="index.php?action=overview&amp;showall=yes">' . _OVERVIEW_SHOWALL . '</a></p>';
4590                         }
4591                 }
4592                 
4593                 if ( $resource->rowCount() > 0 )
4594                 {
4595                         $template['content']    = 'bloglist';
4596                         $template['superadmin'] = $member->isAdmin();
4597                                 
4598                         $this->parser->parse(showlist($resource, 'table', $template, $template_name));
4599                         $resource->closeCursor();
4600                                 
4601                         echo '<h2>' . _OVERVIEW_YRDRAFTS . '</h2>';
4602                                 
4603                         $query = 'SELECT ititle, inumber, bshortname FROM %s, %s '
4604                         . 'WHERE iauthor=%d AND iblog=bnumber AND idraft=1;';
4605                         $query = sprintf($query, sql_table('item'), sql_table('blog'), (integer) $member->getID());
4606                                 
4607                         $resource = DB::getResult($query);
4608                         if ( $resource->rowCount() > 0 )
4609                         {
4610                                 $template['content'] = 'draftlist';
4611                                 $this->parser->parse(showlist($resource, 'table', $template, $template_name));
4612                         }
4613                         else
4614                         {
4615                                 echo _OVERVIEW_NODRAFTS;
4616                         }
4617                 }
4618                 else
4619                 {
4620                         echo _OVERVIEW_NOBLOGS;
4621                 }
4622                 $resource->closeCursor();
4623                 
4624                 return;
4625         }
4626         
4627         /**
4628          * AdminActions::checkCondition()
4629          * Checks conditions for if statements
4630          *
4631          * @param       string  $field type of <%if%>
4632          * @param       string  $name property of field
4633          * @param       string  $value value of property
4634          * @return      boolean condition
4635          */
4636         protected function checkCondition($field, $name='', $value = '')
4637         {
4638                 global $CONF, $archiveprevexists, $archivenextexists, $blog, $catid, $itemidnext, $itemidprev, $manager, $member;
4639                 
4640                 $condition = 0;
4641                 switch ( $field )
4642                 {
4643                         case 'category':
4644                                 if ( !$blog )
4645                                 {
4646                                         if ( $blogid )
4647                                         {
4648                                                 $blog =& $manager->getBlog($blogid);
4649                                         }
4650                                         elseif ( $catid )
4651                                         {
4652                                                 $blogid = getBlogIDFromCatID($catid);
4653                                                 $blog =& $manager->getBlog($blogid);
4654                                         }
4655                                         elseif ( intRequestVar('catid') )
4656                                         {
4657                                                 $catid = intRequestVar('catid');
4658                                                 $blogid = getBlogIDFromCatID($catid);
4659                                                 $blog =& $manager->getBlog($blogid);
4660                                         }
4661                                         else
4662                                         {
4663                                                 return;
4664                                         }
4665                                 }
4666                                 $condition = ($blog && $this->ifCategory($name, $value));
4667                                 break;
4668                         case 'loggedin':
4669                                 $condition = $member->isLoggedIn();
4670                                 break;
4671                         case 'onteam':
4672                                 $condition = $member->isLoggedIn() && $this->ifOnTeam($name);
4673                                 break;
4674                         case 'admin':
4675                                 $condition = $member->isLoggedIn() && $this->ifAdmin($name);
4676                                 break;
4677                         case 'superadmin':
4678                                 $condition = $member->isLoggedIn() && $member->isAdmin();
4679                                 break;
4680                         case 'allowloginedit':
4681                                 $condition = $member->isLoggedIn() && ($CONF['AllowLoginEdit'] || $member->isAdmin());
4682                                 break;
4683                         case 'nextitem':
4684                                 $condition = ($itemidnext != '');
4685                                 break;
4686                         case 'previtem':
4687                                 $condition = ($itemidprev != '');
4688                                 break;
4689                         case 'archiveprevexists':
4690                                 $condition = ($archiveprevexists == true);
4691                                 break;
4692                         case 'archivenextexists':
4693                                 $condition = ($archivenextexists == true);
4694                                 break;
4695                         case 'skintype':
4696                                 $condition = (($name == $this->skintype) || ($name == requestVar('action')));
4697                                 break;
4698                         case 'hasplugin':
4699                                 $condition = $this->ifHasPlugin($name, $value);
4700                                 break;
4701                         case 'adminaction':
4702                                 $condition = (Admin::getAdminAction() == $name);
4703                                 break;
4704                         case 'adminoldaction':
4705                                 $condition = (Admin::getAdminAction() == $name);
4706                                 break;
4707                         case 'addresschange':
4708                                 $condition = ($this->ifAddresscange());
4709                                 break;
4710                         case 'bechangepass':
4711                                 $condition = ($this->beChangePassword());
4712                                 break;
4713                         case 'skincandidates':
4714                                 $condition = ($this->ifSkincandidates());
4715                                 break;
4716                         case 'nameclashes':
4717                                 $condition = requestVar('nameclashes');
4718                                 break;
4719                         case 'existsnewplugin':
4720                                 $condition = ($this->existsNewPlugin());
4721                                 break;
4722                         case 'autosave':
4723                                 if ( $value == '' )
4724                                 {
4725                                         $value = 1;
4726                                 }
4727                                 $condition = (boolean) ($member->getAutosave() == $value);
4728                                 break;
4729                         case 'blogsetting':
4730                                 if ( $value == '' )
4731                                 {
4732                                         $value = 1;
4733                                 }
4734                                 $condition = (Admin::$blog->getSetting($name) == $value);
4735                                 break;
4736                         case 'itemproperty':
4737                                 if ( $value == '' )
4738                                 {
4739                                         $value = 1;
4740                                 }
4741                                 if ( array_key_exists($name, Admin::$contents) )
4742                                 {
4743                                         $condition = (boolean) (Admin::$contents[$name] == $value);
4744                                 }
4745                                 break;
4746                         default:
4747                                 $condition = $manager->pluginInstalled("NP_{$field}") && $this->ifPlugin($field, $name, $value);
4748                                 break;
4749                 }
4750                 return $condition;
4751         }
4752         
4753         /**
4754          * AdminActions::_ifHasPlugin()
4755          *      hasplugin,PlugName
4756          *         -> checks if plugin exists
4757          *      hasplugin,PlugName,OptionName
4758          *         -> checks if the option OptionName from plugin PlugName is not set to 'no'
4759          *      hasplugin,PlugName,OptionName=value
4760          *         -> checks if the option OptionName from plugin PlugName is set to value
4761          *
4762          * @param       string  $name   name of plugin
4763          * @param       string  $value
4764          * @return
4765          */
4766         private function ifHasPlugin($name, $value)
4767         {
4768                 global $manager;
4769                 $condition = false;
4770                 // (pluginInstalled method won't write a message in the actionlog on failure)
4771                 if ( $manager->pluginInstalled("NP_{$name}") )
4772                 {
4773                         $plugin =& $manager->getPlugin("NP_{$name}");
4774                         if ( $plugin != NULL )
4775                         {
4776                                 if ( $value == "" )
4777                                 {
4778                                         $condition = true;
4779                                 }
4780                                 else
4781                                 {
4782                                         list($name2, $value2) = preg_split('#=#', $value, 2);
4783                                         if ( $value2 == "" && $plugin->getOption($name2) != 'no' )
4784                                         {
4785                                                 $condition = true;
4786                                         }
4787                                         else if ( $plugin->getOption($name2) == $value2 )
4788                                         {
4789                                                 $condition = true;
4790                                         }
4791                                 }
4792                         }
4793                 }
4794                 return $condition;
4795         }
4796         
4797         /**
4798          * AdminActions::beChangePassword()
4799          *
4800          * @param       void
4801          * @return      void
4802          */
4803         private function beChangePassword()
4804         {
4805                 return intRequestVar('bNeedsPasswordChange');
4806         }
4807         
4808         /**
4809          * AdminActions::ifSkincandidates()
4810          * Checks if a plugin exists and call its doIf function
4811          *
4812          * @param       void
4813          * @return      void
4814          * @return      boolean
4815          */
4816         private function ifSkincandidates()
4817         {
4818                 global $DIR_SKINS;
4819                 $candidates = SKINIMPORT::searchForCandidates($DIR_SKINS);
4820                 return (count($candidates) > 0);
4821         }
4822         
4823         /**
4824          * AdminActions::ifPlugin()
4825          * Checks if a plugin exists and call its doIf function
4826          *
4827          * @param       string  $name   name of plugin
4828          * @param       string  $key
4829          * @param       string  $value
4830          * @return      callback
4831          */
4832         private function ifPlugin($name, $key = '', $value = '')
4833         {
4834                 global $manager;
4835                 
4836                 $plugin =& $manager->getPlugin("NP_{$name}");
4837                 if ( !$plugin )
4838                 {
4839                         return;
4840                 }
4841                 
4842                 $params = func_get_args();
4843                 array_shift($params);
4844                 
4845                 return call_user_func_array(array(&$plugin, 'doIf'), $params);
4846         }
4847         
4848         /**
4849          * AdminActions::ifCategory()
4850          *  Different checks for a category
4851          *
4852          * @param       string  $key    key for information of category
4853          * @param       string  $value  value for information of category
4854          * @return      boolean
4855          */
4856         private function ifCategory($key = '', $value='')
4857         {
4858                 global $blog, $catid;
4859                 
4860                 // when no parameter is defined, just check if a category is selected
4861                 if (($key != 'catname' && $key != 'catid') || ($value == ''))
4862                 {
4863                         return $blog->isValidCategory($catid);
4864                 }
4865                 
4866                 // check category name
4867                 if ( $key == 'catname' )
4868                 {
4869                         $value = $blog->getCategoryIdFromName($value);
4870                         if ($value == $catid)
4871                         {
4872                                 return $blog->isValidCategory($catid);
4873                         }
4874                 }
4875                 
4876                 // check category id
4877                 if (($key == 'catid') && ($value == $catid))
4878                 {
4879                         return $blog->isValidCategory($catid);
4880                 }
4881                 
4882                 return FALSE;
4883         }
4884         
4885         /**
4886          * AdminActions::ifOnTeam()
4887          * Checks if a member is on the team of a blog and return his rights
4888          *
4889          * @param       string  $blogName       name of weblog
4890          * @return      boolean
4891          */
4892         private function ifOnTeam($blogName = '')
4893         {
4894                 global $blog, $member, $manager;
4895                 
4896                 // when no blog found
4897                 if ( ($blogName == '') && !is_object($blog) )
4898                 {
4899                         return 0;
4900                 }
4901                 
4902                 // explicit blog selection
4903                 if ($blogName != '')
4904                 {
4905                         $blogid = getBlogIDFromName($blogName);
4906                 }
4907                 
4908                 if (($blogName == '') || !$manager->existsBlogID($blogid))
4909                 {
4910                         // use current blog
4911                         $blogid = $blog->getID();
4912                 }
4913                 return $member->teamRights($blogid);
4914         }
4915         
4916         /**
4917          * AdminActions::ifAdmin()
4918          * Checks if a member is admin of a blog
4919          *
4920          * @param       string  $blogName       name of weblog
4921          * @return      boolean
4922          */
4923         private function ifAdmin($blogName = '')
4924         {
4925                 global $blog, $member, $manager;
4926                 
4927                 // when no blog found
4928                 if (($blogName == '') && (!is_object($blog)))
4929                 {
4930                         return 0;
4931                 }
4932                 
4933                 // explicit blog selection
4934                 if ($blogName != '')
4935                 {
4936                         $blogid = getBlogIDFromName($blogName);
4937                 }
4938                 
4939                 if (($blogName == '') || !$manager->existsBlogID($blogid))
4940                 {
4941                         // use current blog
4942                         $blogid = $blog->getID();
4943                 }
4944         
4945                 return $member->isBlogAdmin($blogid);
4946         }
4947         
4948         /**
4949          * AdminActions::ifAddresscange()
4950          * Check e-Mail address is changed
4951          *
4952          * @param       void
4953          * @return      boolean
4954          */
4955         private function ifAddresscange()
4956         {
4957                 global $manager;
4958
4959                 $key = $this->objAdmin->sessionVar("{$CONF['CookiePrefix']}ackey");
4960                 if ( !$key )
4961                 {
4962                         return FALSE;
4963                 }
4964                 $info = MEMBER::getActivationInfo($key);
4965                 if ( !$info )
4966                 {
4967                         return FALSE;
4968                 }
4969                 $mem =& $manager->getMember($info->vmember);
4970                 if ( !$mem )
4971                 {
4972                         return FALSE;
4973                 }
4974                 if ( $info->vtype == 'addresschange' )
4975                 {
4976                         return TRUE;
4977                 }
4978                 return FALSE;
4979         }
4980         
4981         /**
4982          * TODO: move
4983          * AdminActions::customHelp()
4984          * shows a link to custom help file
4985          *
4986          * @param       string  $id
4987          * @param       string  $tplName
4988          * @param       string  $url
4989          * @param       string  $iconURL
4990          * @param       string  $alt
4991          * @param       string  $title
4992          * @param       $onclick
4993          *
4994          */
4995         private function customHelp($id, $tplName = '', $url = '', $iconURL = '', $alt = '', $title = '', $onclick = '')
4996         {
4997                 echo $this->customHelpHtml($id, $tplName, $url, $iconURL, $alt, $title, $onclick);
4998         }
4999         
5000         /**
5001          * TODO: move
5002          * AdminActions::customHelp()
5003          * shows a link to custom help file
5004          *
5005          * @param       string  $id
5006          * @param       string  $tplName
5007          * @param       string  $url
5008          * @param       string  $iconURL
5009          * @param       string  $alt
5010          * @param       string  $title
5011          * @param       $onclick
5012          *
5013          */
5014         static function customHelplink($id, $tplName = '', $url = '', $title = '', $onclick = '')
5015         {
5016                 global $CONF, $manager;
5017                 
5018                 $templates = array();
5019                 
5020                 if ( $tplName )
5021                 {
5022                         $templates =& $manager->getTemplate($tplName);
5023                 }
5024                 
5025                 if ( !array_key_exists('ADMIN_CUSTOMHELPLINK_ANCHOR', $templates) || empty($templates['ADMIN_CUSTOMHELPLINK_ANCHOR']) )
5026                 {
5027                         $template = "<a href=\"<%helpurl%>#<%helptarget%>\" title=\"<%title%>\" <%onclick%>>\n";
5028                 }
5029                 else
5030                 {
5031                         $template = $templates['ADMIN_CUSTOMHELPLINK_ANCHOR'];
5032                 }
5033                 
5034                 if ( empty($url) )
5035                 {
5036                         $url = $CONF['AdminURL'] . 'documentation/customHelp.html';
5037                 }
5038                 
5039                 if ( empty($onclick) )
5040                 {
5041                         $onclick = 'onclick="if (event &amp;&amp; event.preventDefault) event.preventDefault(); return help(this.href);"';
5042                 }
5043                 elseif ( preg_match('#^onclick#', $onclick) )
5044                 {
5045                         $onclick = $onclick;
5046                 }
5047                 else
5048                 {
5049                         $onclick = 'onclick="' . $onclick . '"';
5050                 }
5051                 
5052                 $data = array(
5053                         'helpurl'               => $url,
5054                         'helptarget'    => $id,
5055                         'onclick'               => $onclick,
5056                         'title'                 => (isset($title) && !empty($title)) ? $title : _HELP_TT,
5057                 );
5058                 return Template::fill($template, $data);
5059         }
5060         
5061         /**
5062          * TODO: move
5063          * AdminActions::customHelpHtml()
5064          */
5065         private function customHelpHtml($id, $tplName = '', $url = '', $iconURL = '', $alt = '', $title = '', $onclick = '')
5066         {
5067                 global $CONF, $manager;
5068                 
5069                 $templates = array();
5070                 
5071                 if ( $tplName )
5072                 {
5073                         $templates =& $manager->getTemplate($tplName);
5074                 }
5075                 if ( !array_key_exists('ADMIN_CUSTOMHELPLINK_ICON', $templates) || !empty($templates['ADMIN_CUSTOMHELPLINK_ICON']) )
5076                 {
5077                         $template = "<img src=\"<%iconurl%>\" <%width%><%height%>alt=\"<%alt%>\" title=\"<%title%>\" /></a>\n";
5078                 }
5079                 else
5080                 {
5081                         $template = $templates['ADMIN_CUSTOMHELPLINK_ICON'];
5082                 }
5083                 
5084                 if ( empty($iconURL) )
5085                 {
5086                         $iconURL = $CONF['AdminURL'] . 'documentation/icon-help.gif';
5087                 }
5088                 
5089                 if ( function_exists('getimagesize') )
5090                 {
5091                         $size   = getimagesize($iconURL);
5092                         $width  = 'width="'  . $size[0] . '" ';
5093                         $height = 'height="' . $size[1] . '" ';
5094                 }
5095                 
5096                 $data = array(
5097                         'iconurl'       => $iconURL,
5098                         'width'         => $width,
5099                         'height'        => $height,
5100                         'alt'           => (isset($alt) && !empty($alt))         ? $alt   : _HELP_TT,
5101                         'title'         => (isset($title) && !empty($title)) ? $title : _HELP_TT,
5102                 );
5103                 
5104                 $icon = Template::fill($template, $data);
5105                 $help = $this->customHelplink($id, $tplName, $url, $title, $onclick);
5106                 
5107                 return $help . $icon;
5108         }
5109         
5110         /**
5111          * AdminActions::existsNewPlugin()
5112          * Check exists new plugin
5113          *
5114          * @param       void
5115          * @return      boolean exists or not
5116          */
5117         private function existsNewPlugin()
5118         {
5119                 global $DIR_PLUGINS;
5120                 
5121                 $query = "SELECT * FROM %s;";
5122                 $query = sprintf($query, sql_table('plugin'));
5123                 $res  = DB::getResult($query);
5124                 
5125                 $installed = array();
5126                 foreach( $res as $row )
5127                 {
5128                         $installed[] = $row['pfile'];
5129                 }
5130                 
5131                 $files = scandir($DIR_PLUGINS);
5132                 
5133                 $candidates = array();
5134                 foreach ( $files as $file )
5135                 {
5136                         if ( preg_match("#^(NP_.*)\.php$#", $file, $matches) )
5137                         {
5138                                 if ( !in_array($matches[1], $installed) )
5139                                 {
5140                                         $candidates[] = preg_replace("#^NP_#", "", $matches[1]);
5141                                 }
5142                         }
5143                 }
5144                 $this->newPlugCandidates = $candidates;
5145                 return (count($candidates) > 0);
5146         }
5147         
5148         /**
5149          * AdminActions::pagehead()
5150          * Output admin page head
5151          *
5152          * @param       void
5153          * @return      void
5154          */
5155         public function parse_pagehead()
5156         {
5157                 global $member, $nucleus, $CONF, $manager;
5158                 
5159                 /* HTTP 1.1 application for no caching */
5160                 header("Cache-Control: no-cache, must-revalidate");
5161                 header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
5162                 
5163                 $content = $this->parser->skin->getContentFromDB('pagehead');
5164                 if ( !$content )
5165                 {
5166                         $root_element = 'html';
5167                         $charset = i18n::get_current_charset();
5168                         $locale = preg_replace('#_#', '-', i18n::get_current_locale());
5169                         $xml_version_info = self::$xml_version_info;
5170                         $formal_public_identifier = self::$formal_public_identifier;
5171                         $system_identifier = self::$system_identifier;
5172                         $xhtml_namespace = self::$xhtml_namespace;
5173                         
5174                         $content = "<?xml version=\"{$xml_version_info}\" encoding=\"{$charset}\" ?>\n"
5175                                   . "<!DOCTYPE {$root_element} PUBLIC \"{$formal_public_identifier}\" \"{$system_identifier}\">\n"
5176                                   . "<{$root_element} xmlns=\"{$xhtml_namespace}\" xml:lang=\"{$locale}\" lang=\"{$locale}\">\n"
5177                                   . "<head>\n"
5178                                   . "<title><%sitevar(name)%> - Admin</title>\n"
5179                                   . "<script type=\"text/javascript\" src=\"<%skinfile(/javascripts/edit.js)%>\"></script>"
5180                                   . "<script type=\"text/javascript\" src=\"<%skinfile(/javascripts/admin.js)%>\"></script>"
5181                                   . "<script type=\"text/javascript\" src=\"<%skinfile(/javascripts/compatibility.js)%>\"></script>"
5182                                   . "<%extrahead%>"
5183                                   . "</head>"
5184                                   . "<body>"
5185                                   . "<div id=\"adminwrapper\">"
5186                                   . "<div class=\"header\">"
5187                                   . "<h1><%sitevar(name)%></h1>"
5188                                   . "</div>"
5189                                   . "<div id=\"container\">"
5190                                   . "<div id=\"content\">"
5191                                   . "<div class=\"loginname\">"
5192                                   . "<link rel=\"stylesheet\" title=\"Nucleus Admin Default\" type=\"text/css\" href=\"<%skinfile(admin/defaultadmin/styles/addedit.css%>\" />\n"
5193                                   . "<script type=\"text/javascript\" src=\"<%skinfile(/javascripts/edit.js)%>\"></script>\n"
5194                                   . "<script type=\"text/javascript\" src=\"<%skinfile(/javascripts/admin.js)%>\"></script>\n"
5195                                   . "<script type=\"text/javascript\" src=\"<%skinfile(/javascripts/compatibility.js)%>\"></script>\n"
5196                                   . "<%extrahead%>\n"
5197                                   . "</head>\n"
5198                                   . "\n"
5199                                   . "<body>\n"
5200                                   . "<div id=\"adminwrapper\">\n"
5201                                   . "<div class=\"header\">\n"
5202                                   . "<h1><%sitevar(name)%></h1>\n"
5203                                   . "</div>\n"
5204                                   . "<div id=\"container\">\n"
5205                                   . "<div id=\"content\">\n"
5206                                   . "<div class=\"loginname\">\n"
5207                                   . "<%if(loggedin)%>"
5208                                   . "<%text(_LOGGEDINAS)%> <%member(yourrealname)%> - <a href=\"<%adminurl%>index.php?action=logout\"><%text(_LOGOUT)%></a><br />"
5209                                   . "<a href=\"<%adminurl%>index.php?action=overview\"><%text(_ADMINHOME)%></a> - "
5210                                   . "<%else%>"
5211                                   . "<a href=\"<%adminurl%>index.php?action=showlogin\" title=\"Log in\"><%text(_NOTLOGGEDIN)%></a><br />"
5212                                   . "<%endif%>"
5213                                   . "<a href=\"<%sitevar(url)%>\"><%text(_YOURSITE)%></a><br />"
5214                                   . "("
5215                                   . "<%if(superadmin)%>"
5216                                   . "<a href=\"<%versioncheckurl%>\" title=\"<%text(_ADMIN_SYSTEMOVERVIEW_VERSIONCHECK_TITLE)%>\"><%version%><%codename%></a>"
5217                                   . "<%newestcompare%><%else%><%version%><%codename%>"
5218                                   . "<%endif%>"
5219                                   . ")"
5220                                   . "</div>";
5221                 }
5222                 
5223                 $this->parser->parse($content);
5224                 return;
5225         }
5226         
5227         /**
5228          * AdminActionss::pagefoot()
5229          * Output admin page foot include quickmenu
5230          *
5231          * @param       void
5232          * @return      void
5233          */
5234         public function parse_pagefoot()
5235         {
5236                 global $action, $member, $manager, $blogid;
5237                 
5238                 $data = array(
5239                         'action' => Admin::getAdminAction()
5240                 );
5241                 $manager->notify('AdminPrePageFoot', $data);
5242                 
5243                 $content = $this->parser->skin->getContentFromDB('pagefoot');
5244                 if ( !$content )
5245                 {
5246                         $content = "<%if(loggedin)%>"
5247                                  . "<%ifnot(adminaction,showlogin)%>"
5248                                  . "<h2><%text(_LOGOUT)%></h2>"
5249                                  . "<ul>"
5250                                  . "<li><a href=\"<%adminurl%>index.php?action=overview\"><%text(_BACKHOME)%></a></li>"
5251                                  . "<li><a href=\"<%adminurl%>index.php?action=logout\"><%text(_LOGOUT)%></a></li>"
5252                                  . "</ul>"
5253                                  . "<%endif%>"
5254                                  . "<%endif%>"
5255                                  . "<div class=\"foot\">"
5256                                  . "<a href=\"<%text(_ADMINPAGEFOOT_OFFICIALURL)%>\">Nucleus CMS</a> &copy; 2002- <%date(%Y)%> <%text(_ADMINPAGEFOOT_COPYRIGHT)%>"
5257                                  . " - <a href=\"<%text(_ADMINPAGEFOOT_DONATEURL)%>\"><%text(_ADMINPAGEFOOT_DONATE)%></a>"
5258                                  . "</div>"
5259                                  . "</div>"
5260                                  . "<!-- content -->"
5261                                  . "<div id=\"quickmenu\">"
5262                                  . "<%if(loggedin)%>"
5263                                  . "<%ifnot(adminaction,showlogin)%>"
5264                                  . "<ul>"
5265                                  . "<li><a href=\"<%adminurl%>index.php?action=overview\"><%text(_QMENU_HOME)%></a></li>"
5266                                  . "</ul>"
5267                                  . "<h2><%text(_QMENU_ADD)%></h2>"
5268                                  . "<form method=\"get\" action=\"<%adminurl%>index.php\">"
5269                                  . "<div>"
5270                                  . "<input type=\"hidden\" name=\"action\" value=\"createitem\" />"
5271                                  . "<%qmenuaddselect(admin/default)%>"
5272                                  . "</div>"
5273                                  . "</form>"
5274                                  . "<h2><%member(yourrealname)%></h2>"
5275                                  . "<ul>"
5276                                  . "<li><a href=\"<%adminurl%>index.php?action=editmembersettings\"><%text(_QMENU_USER_SETTINGS)%></a></li>"
5277                                  . "<li><a href=\"<%adminurl%>index.php?action=browseownitems\"><%text(_QMENU_USER_ITEMS)%></a></li>"
5278                                  . "<li><a href=\"<%adminurl%>index.php?action=browseowncomments\"><%text(_QMENU_USER_COMMENTS)%></a></li>"
5279                                  . "</ul>"
5280                                  . "<%if(superadmin)%>"
5281                                  . "<h2><%text(_QMENU_MANAGE)%></h2>"
5282                                  . "<ul>"
5283                                  . "<li><a href=\"<%adminurl%>index.php?action=actionlog\"><%text(_QMENU_MANAGE_LOG)%></a></li>"
5284                                  . "<li><a href=\"<%adminurl%>index.php?action=settingsedit\"><%text(_QMENU_MANAGE_SETTINGS)%></a></li>"
5285                                  . "<li><a href=\"<%adminurl%>index.php?action=systemoverview\"><%text(_QMENU_MANAGE_SYSTEM)%></a></li>"
5286                                  . "<li><a href=\"<%adminurl%>index.php?action=usermanagement\"><%text(_QMENU_MANAGE_MEMBERS)%></a></li>"
5287                                  . "<li><a href=\"<%adminurl%>index.php?action=createnewlog\"><%text(_QMENU_MANAGE_NEWBLOG)%></a></li>"
5288                                  . "<li><a href=\"<%adminurl%>index.php?action=backupoverview\"><%text(_QMENU_MANAGE_BACKUPS)%></a></li>"
5289                                  . "<li><a href=\"<%adminurl%>index.php?action=pluginlist\"><%text(_QMENU_MANAGE_PLUGINS)%></a></li>"
5290                                  . "</ul>"
5291                                  . "<h2><%text(_QMENU_LAYOUT)%></h2>"
5292                                  . "<ul>"
5293                                  . "<li><a href=\"<%adminurl%>index.php?action=skinoverview\"><%text(_QMENU_LAYOUT_SKINS)%></a></li>"
5294                                  . "<li><a href=\"<%adminurl%>index.php?action=templateoverview\"><%text(_QMENU_LAYOUT_TEMPL)%></a></li>"
5295                                  . "<li><a href=\"<%adminurl%>index.php?action=skinieoverview\"><%text(_QMENU_LAYOUT_IEXPORT)%></a></li>"
5296                                  . "</ul>"
5297                                  . "<h2><%text(_SKINABLEADMIN_QMENU_LAYOUT)%></h2>"
5298                                  . "<ul>"
5299                                  . "<li><a href=\"<%adminurl%>index.php?action=adminskinoverview\"><%text(_QMENU_LAYOUT_SKINS)%></a></li>"
5300                                  . "<li><a href=\"<%adminurl%>index.php?action=admintemplateoverview\"><%text(_QMENU_LAYOUT_TEMPL)%></a></li>"
5301                                  . "<li><a href=\"<%adminurl%>index.php?action=adminskinieoverview\"><%text(_QMENU_LAYOUT_IEXPORT)%></a></li>"
5302                                  . "</ul>"
5303                                  . "<%endif%>"
5304                                  . "<%quickmenu(admin/default)%>"
5305                                  . "<%endif%>"
5306                                  . "<%elseif(adminaction,activate)%>"
5307                                  . "<h2><%text(_QMENU_ACTIVATE)%></h2>"
5308                                  . "<%text(_QMENU_ACTIVATE_TEXT)%>"
5309                                  . "<%elseif(adminaction,activatesetpwd)%>"
5310                                  . "<h2><%text(_QMENU_ACTIVATE)%></h2><%text(_QMENU_ACTIVATE_TEXT)%>"
5311                                  . "<%else%>"
5312                                  . "<h2><%text(_QMENU_INTRO)%></h2><%text(_QMENU_INTRO_TEXT)%>"
5313                                  . "<%endif%>"
5314                                  . "</div>"
5315                                  . "<!-- content / quickmenu container -->"
5316                                  . "<div class=\"clear\"></div>"
5317                                  . "<!-- new -->"
5318                                  . "</div>"
5319                                  . "<!-- adminwrapper -->"
5320                                  . "<!-- new -->"
5321                                  . "</div>"
5322                                  . "<!-- new -->"
5323                                  . "<p style=\"text-align:right;\"><%benchmark%></p>"
5324                                  . "</body>"
5325                                  . "</html>";
5326                 }
5327                 
5328                 $this->parser->parse($content);
5329                 return;
5330         }
5331         /**
5332          * AdminActions::selectBlog()
5333          * Inserts a HTML select element with choices for all blogs to which the user has access
5334          *      mode = 'blog' => shows blognames and values are blogids
5335          *      mode = 'category' => show category names and values are catids
5336          *
5337          * @param       string  $name
5338          * @param       string  $mode
5339          * @param       integer $selected
5340          * @param       integer $tabindex
5341          * @param       integer $showNewCat
5342          * @param       integer $iForcedBlogInclude     ID for weblog always included
5343          * @param $iForcedBlogInclude
5344          *      ID of a blog that always needs to be included, without checking if the
5345          *      member is on the blog team (-1 = none)
5346          * @return      void
5347          */
5348         private function selectBlog($name, $mode='blog', $selected = 0, $tabindex = 0, $showNewCat = 0, $iForcedBlogInclude = -1)
5349         {
5350                 global $member, $CONF;
5351                 
5352                 // 0. get IDs of blogs to which member can post items (+ forced blog)
5353                 $aBlogIds = array();
5354                 if ( $iForcedBlogInclude != -1 )
5355                 {
5356                         $aBlogIds[] = intval($iForcedBlogInclude);
5357                 }
5358                 
5359                 if ( $member->isAdmin() && array_key_exists('ShowAllBlogs', $CONF) && $CONF['ShowAllBlogs'] )
5360                 {
5361                         $query =  "SELECT bnumber FROM %s ORDER BY bname;";
5362                         $query = sprintf($query, sql_table('blog'));
5363                 }
5364                 else
5365                 {
5366                         $query =  "SELECT bnumber FROM %s, %s WHERE tblog=bnumber AND tmember=%d;";
5367                         $query = sprintf($query, sql_table('blog'), sql_table('team'), (integer) $member->getID());
5368                 }
5369                 
5370                 $rblogids = DB::getResult($query);
5371                 foreach ( $rblogids as $row )
5372                 {
5373                         if ( $row['bnumber'] != $iForcedBlogInclude )
5374                         {
5375                                 $aBlogIds[] = intval($row['bnumber']);
5376                         }
5377                 }
5378                 
5379                 if ( count($aBlogIds) == 0 )
5380                 {
5381                         return;
5382                 }
5383                 
5384                 echo "<select name=\"{$name}\" tabindex=\"{$tabindex}\">\n";
5385                 
5386                 // 1. select blogs (we'll create optiongroups)
5387                 // (only select those blogs that have the user on the team)
5388                 $queryBlogs = "SELECT bnumber, bname FROM %s WHERE bnumber in (%s) ORDER BY bname;";
5389                 $queryBlogs = sprintf($queryBlogs, sql_table('blog'), implode(',', $aBlogIds));
5390                 $blogs = DB::getResult($queryBlogs);
5391                 
5392                 if ( $mode == 'category' )
5393                 {
5394                         if ( $blogs->rowCount() > 1 )
5395                         {
5396                                 $multipleBlogs = 1;
5397                         }
5398                         foreach ( $blogs as $rBlog )
5399                         {
5400                                 if ( isset($multipleBlogs) && !empty($multipleBlogs) )
5401                                 {
5402                                         echo '<optgroup label="' . Entity::hsc($rBlog['bname']) . "\">\n";
5403                                 }
5404                                 
5405                                 // show selection to create new category when allowed/wanted
5406                                 if ( $showNewCat )
5407                                 {
5408                                         // check if allowed to do so
5409                                         if ( $member->blogAdminRights($rBlog['bnumber']) )
5410                                         {
5411                                                 echo '<option value="newcat-' . $rBlog['bnumber'] . '">' . _ADD_NEWCAT . "</option>\n";
5412                                         }
5413                                 }
5414                                 
5415                                 // 2. for each category in that blog
5416                                 $catQuery = "SELECT cname, catid FROM %s WHERE cblog=%d ORDER BY cname ASC;";
5417                                 $catQuery = sprintf($catQuery, sql_table('category'), (integer) $rBlog['bnumber']);
5418                                 $categories = DB::getResult($catQuery);
5419                                 foreach ( $categories as $rCat )
5420                                 {
5421                                         if ( $rCat['catid'] == $selected )
5422                                         {
5423                                                 $selectText = ' selected="selected" ';
5424                                         }
5425                                         else
5426                                         {
5427                                                 $selectText = '';
5428                                         }
5429                                         echo '<option value="' . $rCat['catid'] . '" ' . $selectText . '>' . Entity::hsc($rCat['cname']) . "</option>\n";
5430                                 }
5431                                 
5432                                 if ( isset($multipleBlogs) && !empty($multipleBlogs) )
5433                                 {
5434                                         echo '</optgroup>';
5435                                 }
5436                         }
5437                 }
5438                 else
5439                 {
5440                         foreach ( $blogs as $rBlog )
5441                         {
5442                                 echo '<option value="' . $rBlog['bnumber'] . '"';
5443                                 if ( $rBlog['bnumber'] == $selected )
5444                                 {
5445                                         echo '<option value="' . $rBlog['bnumber'] . '" selected="selected">' . Entity::hsc($rBlog['bname']) . "</option>\n";
5446                                 }
5447                                 else
5448                                 {
5449                                         echo '<option value="' . $rBlog['bnumber'] . '">' . Entity::hsc($rBlog['bname']) . "</option>\n";
5450                                 }
5451                         }
5452                 }
5453                 echo "</select>\n";
5454                 return;
5455         }
5456 }