C:\$Recycle.Bin\S-1-5-21-3967099092-2644009230-141905953-500\$R83TZYV\nucleus\libs\SKIN.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
<?php


/*
  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
  * Copyright (C) 2002-2005 The Nucleus Group
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
  * of the License, or (at your option) any later version.
  * (see nucleus/documentation/index.html#license for more info)
 */
/**
  * Class representing a skin
  *
 * @license http://nucleuscms.org/license.txt GNU General Public License
 * @copyright Copyright (C) 2002-2005 The Nucleus Group
 * @version $Id: SKIN.php,v 1.62.2.1 2005/08/15 10:50:12 dekarma Exp $
  */
class SKIN {

    
// after creating a SKIN object, evaluates to true when the skin exists
    
var $isValid;
    
    
// skin characteristics. Use the getXXX methods rather than accessing directly
    
var $id;
    var 
$description;
    var 
$contentType;
    var 
$includeMode;        // either 'normal' or 'skindir'
    
var $includePrefix;
    var 
$name;
    
    function 
SKIN($id) {
        
$this->id intval($id);

        
// read skin name/description/content type
        
$res sql_query('SELECT * FROM '.sql_table('skin_desc').' WHERE sdnumber=' $this->id);
        
$obj mysql_fetch_object($res);
        
$this->isValid = (mysql_num_rows($res) > 0);
        if (!
$this->isValid)
            return;
            
        
$this->name $obj->sdname;
        
$this->description $obj->sddesc;
        
$this->contentType $obj->sdtype;
        
$this->includeMode $obj->sdincmode;
        
$this->includePrefix $obj->sdincpref;

    }
    
    function 
getID() {                return $this->id; }
    function 
getName() {             return $this->name; }
    function 
getDescription() {     return $this->description; }
    function 
getContentType() {     return $this->contentType; }
    function 
getIncludeMode() {     return $this->includeMode; }
    function 
getIncludePrefix() {     return $this->includePrefix; }
    
    
// returns true if there is a skin with the given shortname (static)
    
function exists($name) {
        return 
quickQuery('select count(*) as result FROM '.sql_table('skin_desc').' WHERE sdname="'.addslashes($name).'"') > 0;
    }

    
// returns true if there is a skin with the given ID (static)
    
function existsID($id) {
        return 
quickQuery('select COUNT(*) as result FROM '.sql_table('skin_desc').' WHERE sdnumber='.intval($id)) > 0;
    }    
    
    
// (static)
    
function createFromName($name) {
        return new 
SKIN(SKIN::getIdFromName($name));
    }    
    
    
// (static)
    
function getIdFromName($name) {
        
$query =  'SELECT sdnumber'
               
' FROM '.sql_table('skin_desc')
               . 
' WHERE sdname="'.addslashes($name).'"';
        
$res sql_query($query);
        
$obj mysql_fetch_object($res);
        return 
$obj->sdnumber;    
    }
    
    
// (static)
    
function getNameFromId($id) {
        return 
quickQuery('SELECT sdname as result FROM '.sql_table('skin_desc').' WHERE sdnumber=' intval($id));
    }
    
    
/**
     * Creates a new skin, with the given characteristics.
     *
     * (static)
     */
    
function createNew($name$desc$type 'text/html'$includeMode 'normal'$includePrefix '') {
        global 
$manager;
        
        
$manager->notify(
            
'PreAddSkin',
            array(
                
'name' => &$name,
                
'description' => &$desc,
                
'type' => &$type,
                
'includeMode' => &$includeMode,
                
'includePrefix' => &$includePrefix
            
)
        );

        
sql_query('INSERT INTO '.sql_table('skin_desc')." (sdname, sddesc, sdtype, sdincmode, sdincpref) VALUES ('" addslashes($name) . "','" addslashes($desc) . "','".addslashes($type)."','".addslashes($includeMode)."','".addslashes($includePrefix)."')");
        
$newid mysql_insert_id();
        
        
$manager->notify(
            
'PostAddSkin',
            array(
                
'skinid' => $newid,
                
'name' => $name,
                
'description' => $desc,
                
'type' => $type,
                
'includeMode' => $includeMode,
                
'includePrefix' => $includePrefix
            
)
        );
        
        return 
$newid;
    }
    
    function 
parse($type) {
        global 
$manager$CONF;

        
$manager->notify('InitSkinParse',array('skin' => &$this'type' => $type));

        
// set output type
        
sendContentType($this->getContentType(), 'skin'_CHARSET);

        
// set skin name as global var (so plugins can access it)
        
global $currentSkinName;
        
$currentSkinName $this->getName();

        
$contents $this->getContent($type);

        if (!
$contents) {
            
// use base skin if this skin does not have contents
            
$defskin =& new SKIN($CONF['BaseSkin']);
            
$contents $defskin->getContent($type);
            if (!
$contents) {
                echo 
_ERROR_SKIN;
                return;
            }
        }

        
$actions $this->getAllowedActionsForType($type);

        
$manager->notify('PreSkinParse',array('skin' => &$this'type' => $type'contents' => &$contents));

        
// set IncludeMode properties of parser
        
PARSER::setProperty('IncludeMode',$this->getIncludeMode());
        
PARSER::setProperty('IncludePrefix',$this->getIncludePrefix());

        
$handler =& new ACTIONS($type$this);
        
$parser =& new PARSER($actions$handler);
        
$handler->setParser($parser);
        
$handler->setSkin($this);
        
$parser->parse($contents);

        
$manager->notify('PostSkinParse',array('skin' => &$this'type' => $type));


    }

    function 
getContent($type) {
        
$query 'SELECT scontent FROM '.sql_table('skin')." WHERE sdesc=$this->id and stype='"addslashes($type) ."'";
        
$res sql_query($query);

        if (
mysql_num_rows($res) == 0)
            return 
'';
        else
            return 
mysql_result($res00);
    }

    
/**
     * Updates the contents of one part of the skin
     */
    
function update($type$content) {
        
$skinid $this->id;

        
// delete old thingie
        
sql_query('DELETE FROM '.sql_table('skin')." WHERE stype='".addslashes($type)."' and sdesc=" intval($skinid));

        
// write new thingie
        
if ($content) {
            
sql_query('INSERT INTO '.sql_table('skin')." SET scontent='" addslashes($content) . "', stype='" addslashes($type) . "', sdesc=" intval($skinid));
        }    
    }
    
    
/**
     * Deletes all skin parts from the database
     */
    
function deleteAllParts() {
        
sql_query('DELETE FROM '.sql_table('skin').' WHERE sdesc='.$this->getID());
    }
    
    
/**
     * Updates the general information about the skin
     */
    
function updateGeneralInfo($name$desc$type 'text/html'$includeMode 'normal'$includePrefix '') {
        
$query =  'UPDATE '.sql_table('skin_desc').' SET'
               
" sdname='" addslashes($name) . "',"
               
" sddesc='" addslashes($desc) . "',"
               
" sdtype='" addslashes($type) . "',"
               
" sdincmode='" addslashes($includeMode) . "',"
               
" sdincpref='" addslashes($includePrefix) . "'"               
               
" WHERE sdnumber=" $this->getID();
        
sql_query($query);        
    }
    
    
/**
     * static: returns an array of friendly names
     */
    
function getFriendlyNames() {
        return array(
            
'index' => _SKIN_PART_MAIN,
            
'item' => _SKIN_PART_ITEM,
            
'archivelist' => _SKIN_PART_ALIST,
            
'archive' => _SKIN_PART_ARCHIVE,
            
'search' => _SKIN_PART_SEARCH,
            
'error' => _SKIN_PART_ERROR,
            
'member' => _SKIN_PART_MEMBER,
            
'imagepopup' => _SKIN_PART_POPUP
        
);    
    }
    
    function 
getAllowedActionsForType($type) {
        
// some actions that can be performed at any time, from anywhere
        
$defaultActions = array('otherblog',
                                
'plugin',
                                
'version',
                                
'nucleusbutton',
                                
'include',
                                
'phpinclude',
                                
'parsedinclude',
                                
'loginform',
                                
'sitevar',
                                
'otherarchivelist',
                                
'otherarchivedaylist',
                                
'self',
                                
'adminurl',
                                
'todaylink',
                                
'archivelink',
                                
'member',
                                
'ifcat',                    // deprecated (Nucleus v2.0)
                                
'category',
                                
'searchform',
                                
'referer',
                                
'skinname',
                                
'skinfile',
                                
'set',
                                
'if',
                                
'else',
                                
'endif',
                                
'charset'
                                
);
        
        
// extra actions specific for a certain skin type
        
$extraActions = array();

        switch (
$type) {
            case 
'index':
                
$extraActions = array('blog'
                                
'blogsetting',
                                
'preview',
                                
'additemform',
                                
'categorylist',                                
                                
'archivelist',
                                
'archivedaylist',
                                
'nextlink',
                                
'prevlink'
                                
);                
                break;
            case 
'archive':
                
$extraActions = array('blog',
                                
'archive',
                                
'otherarchive',
                                
'categorylist',                                
                                
'archivelist',
                                
'archivedaylist',                                
                                
'blogsetting',
                                
'archivedate',
                                
'nextarchive',
                                
'prevarchive',
                                
'nextlink',
                                
'prevlink',
                                
'archivetype'
                
);
                break;
            case 
'archivelist':
                
$extraActions = array('blog',
                                
'archivelist',
                                
'archivedaylist',
                                
'categorylist',
                                
'blogsetting',
                               );
                break;
            case 
'search':
                
$extraActions = array('blog',
                                
'archivelist',
                                
'archivedaylist',
                                
'categorylist',
                                
'searchresults',
                                
'othersearchresults',
                                
'blogsetting',
                                
'query',
                                
'nextlink',
                                
'prevlink'
                                
);
                break;
            case 
'imagepopup':
                
$extraActions = array('image',
                                
'imagetext',                // deprecated (Nucleus v2.0)
                                
);
                break;
            case 
'member':
                
$extraActions = array(
                                
'membermailform',
                                
'blogsetting',
                                
'nucleusbutton'
                
);
                break;
            case 
'item':
                
$extraActions = array('blog',
                                
'item',
                                
'comments',
                                
'commentform',
                                
'vars',
                                
'blogsetting',
                                
'nextitem',
                                
'previtem',
                                
'nextlink',
                                
'prevlink',
                                
'nextitemtitle',
                                
'previtemtitle',
                                
'categorylist',                                
                                
'archivelist',
                                
'archivedaylist',                                
                                
'itemtitle',
                                
'itemid',
                                
'itemlink',
                                );
                break;
            case 
'error':
                
$extraActions = array(
                                
'errormessage'
                
);
                break;
        }
        return 
array_merge($defaultActions$extraActions);
    }
    
}


/*
 * This class contains the functions that get called by using
 * the special tags in the skins
 *
 * The allowed tags for a type of skinpart are defined by the 
 * SKIN::getAllowedActionsForType($type) method
 */
class ACTIONS extends BaseActions {

    
// part of the skin currently being parsed ('index', 'item', 'archive',
    // 'archivelist', 'member', 'search', 'error', 'imagepopup')
    
var $skintype;
    
    
// contains an assoc array with parameters that need to be included when
    // generating links to items/archives/... (e.g. catid)    
    
var $linkparams;
    
    
// reference to the skin object for which a part is being parsed
    
var $skin;
    

    
// used when including templated forms from the include/ dir. The $formdata var 
    // contains the values to fill out in there (assoc array name -> value)
    
var $formdata;
    

    
// filled out with the number of displayed items after calling one of the 

    // (other)blog/(other)searchresults skinvars.

    
var $amountfound;

    function 
ACTIONS($type) {
        
// call constructor of superclass first
        
$this->BaseActions();

        
$this->skintype $type;

        global 
$catid;
        if (
$catid
            
$this->linkparams = array('catid' => $catid);
    }

    function 
setSkin(&$skin) {
        
$this->skin =& $skin;
    }
    
    function 
setParser(&$parser) {
        
$this->parser =& $parser;
    }
    
    
/*
        Forms get parsedincluded now, using an extra <formdata> skinvar
    */
    
function doForm($filename) {
        global 
$DIR_NUCLEUS;
        
array_push($this->parser->actions,'formdata','text','callback','errordiv','ticket');
        
$oldIncludeMode PARSER::getProperty('IncludeMode');
        
$oldIncludePrefix PARSER::getProperty('IncludePrefix');
        
PARSER::setProperty('IncludeMode','normal');
        
PARSER::setProperty('IncludePrefix','');
        
$this->parse_parsedinclude($DIR_NUCLEUS 'forms/' $filename '.template');
        
PARSER::setProperty('IncludeMode',$oldIncludeMode);
        
PARSER::setProperty('IncludePrefix',$oldIncludePrefix);
        
array_pop($this->parser->actions);        // errordiv
        
array_pop($this->parser->actions);        // callback
        
array_pop($this->parser->actions);        // text
        
array_pop($this->parser->actions);        // formdata
        
array_pop($this->parser->actions);        // ticket
    
}

    function 
parse_ticket() {
        global 
$manager;
        
$manager->addTicketHidden();
    }

    function 
parse_formdata($what) {
        echo 
$this->formdata[$what];
    }
    function 
parse_text($which) {
        
// constant($which) only available from 4.0.4 :(
        
if (defined($which)) {     
            eval(
"echo $which;");
        }
    }
    function 
parse_callback($eventName$type)
    {
        global 
$manager;
        
$manager->notify($eventName, array('type' => $type));
    }
    function 
parse_errordiv() {
        global 
$errormessage;
        if (
$errormessage)
              echo 
'<div class="error">'htmlspecialchars($errormessage),'</div>';
    }
    
    function 
parse_skinname() {
        echo 
$this->skin->getName();
    }
    
    function 
parse_if($field$name=''$value '') {
        global 
$catid$blog$member$itemidnext$itemidprev$manager;

        
$condition 0;
        switch(
$field) {
            case 
'category':
                
$condition = ($blog && $this->_ifCategory($name,$value));
                break;
            case 
'blogsetting':
                
$condition = ($blog && ($blog->getSetting($name) == $value));
                break;
            case 
'loggedin':
                
$condition $member->isLoggedIn();
                break;
            case 
'onteam':
                
$condition $member->isLoggedIn() && $this->_ifOnTeam($name);
                break;
            case 
'admin':
                
$condition $member->isLoggedIn() && $this->_ifAdmin($name);
                break;                
            case 
'nextitem':
                
$condition = ($itemidnext != '');
                break;
            case 
'previtem':
                
$condition = ($itemidprev != ''); 
                break;
            case 
'skintype':
                
$condition = ($name == $this->skintype);
                break;
            
/*
                hasplugin,PlugName
                    -> checks if plugin exists
                hasplugin,PlugName,OptionName
                    -> checks if the option OptionName from plugin PlugName is not set to 'no'
                hasplugin,PlugName,OptionName=value
                    -> checks if the option OptionName from plugin PlugName is set to value
            */
              
case 'hasplugin':
                
$condition false;
                
// (pluginInstalled method won't write a message in the actionlog on failure)
                
if ($manager->pluginInstalled('NP_'.$name)) 
                {
                    
$plugin =& $manager->getPlugin('NP_' $name);
                    if (
$plugin != NULL){
                        if (
$value == "") {
                            
$condition true;
                        } else {
                            list(
$name2$value2) = explode('='$value2);
                            if (
$value2 == "" && $plugin->getOption($name2) != 'no') {
                                
$condition true;
                            } else if (
$plugin->getOption($name2) == $value2) {
                                
$condition true;
                            }
                        }
                    }
                }
                break;                
            default:    
                return;
        }
        
$this->_addIfCondition($condition);
    }
    
    function 
_ifCategory($name ''$value='') {
        global 
$blog$catid;

        
// when no parameter is defined, just check if a category is selected
        
if (($name != 'catname' && $name != 'catid') || ($value == ''))
            return 
$blog->isValidCategory($catid);

        
// check category name
        
if ($name == 'catname') {
            
$value $blog->getCategoryIdFromName($value);
            if (
$value == $catid)
                return 
$blog->isValidCategory($catid);
        }

        
// check category id
        
if (($name == 'catid') && ($value == $catid))
            return 
$blog->isValidCategory($catid);
        
        return 
false;
    }
   
    function 
_ifOnTeam($blogName '') {
        global 
$blog$member$manager;
        
        
// when no blog found
        
if (($blogName == '') && (!is_object($blog)))
            return 
0;
        
        
// explicit blog selection
        
if ($blogName != ''
            
$blogid getBlogIDFromName($blogName); 
        
        if ((
$blogName == '') || !$manager->existsBlogID($blogid))
            
// use current blog
            
$blogid $blog->getID();
            
        return 
$member->teamRights($blogid);
    }
    
    function 
_ifAdmin($blogName '') {
        global 
$blog$member$manager;

        
// when no blog found
        
if (($blogName == '') && (!is_object($blog)))
            return 
0;

        
// explicit blog selection
        
if ($blogName != '')
            
$blogid getBlogIDFromName($blogName);

        if ((
$blogName == '') || !$manager->existsBlogID($blogid))
            
// use current blog
            
$blogid $blog->getID();

        return 
$member->isBlogAdmin($blogid);
    }    
    
    function 
parse_ifcat($text '') {
        if (
$text == '') {
            
// new behaviour
            
$this->parse_if('category');
        } else {
            
// old behaviour
            
global $catid$blog;
            if (
$blog->isValidCategory($catid))
                echo 
$text;
        }
    }
    
    
// a link to the today page (depending on selected blog, etc...)
    
function parse_todaylink($linktext '') {
        global 
$blog$CONF;
        if (
$blog)
            echo 
$this->_link(createBlogidLink($blog->getID(),$this->linkparams), $linktext);
        else
            echo 
$this->_link($CONF['SiteUrl'], $linktext);
    }
    
    
// a link to the archives for the current blog (or for default blog)
    
function parse_archivelink($linktext '') {
        global 
$blog$CONF;
        if (
$blog)
            echo 
$this->_link(createArchiveListLink($blog->getID(),$this->linkparams), $linktext);
        else
            echo 
$this->_link(createArchiveListLink(), $linktext);
    }

    
// include itemid of prev item
    
function parse_previtem() {
        global 
$itemidprev;
        echo 
$itemidprev;
    }

    
// include itemtitle of prev item
    
function parse_previtemtitle($format '') {
        global 
$itemtitleprev;
        
        switch (
$format) {
            case 
'xml':
                echo 
stringToXML ($itemtitleprev);
                break;
            case 
'attribute':
                echo 
stringToAttribute ($itemtitleprev);
                break;
            case 
'raw':
                echo 
$itemtitleprev;
                break;
            default:
        echo 
htmlspecialchars($itemtitleprev);
                break;
        }
    }

    
// include itemid of next item
    
function parse_nextitem() {
        global 
$itemidnext;
        echo 
$itemidnext;
    }

    
// include itemtitle of next item
    
function parse_nextitemtitle($format '') {
        global 
$itemtitlenext;

        switch (
$format) {
            case 
'xml':
                echo 
stringToXML ($itemtitlenext);
                break;
            case 
'attribute':
                echo 
stringToAttribute ($itemtitlenext);
                break;
            case 
'raw':
                echo 
$itemtitlenext;
                break;
            default:
        echo 
htmlspecialchars($itemtitlenext);
                break;
        }
    }

    function 
parse_prevarchive() {
        global 
$archiveprev;
        echo 
$archiveprev;
    }

    function 
parse_nextarchive() {
        global 
$archivenext;
        echo 
$archivenext;
    }

    function 
parse_archivetype() {
        global 
$archivetype;
        echo 
$archivetype;
    }

    function 
parse_prevlink($linktext ''$amount 10) {
        global 
$itemidprev$archiveprev$startpos;

        if (
$this->skintype == 'item')
            
$this->_itemlink($itemidprev$linktext);
        else if (
$this->skintype == 'search' || $this->skintype == 'index')
            
$this->_searchlink($amount$startpos'prev'$linktext);
        else
            
$this->_archivelink($archiveprev$linktext);
    }
    
    function 
parse_nextlink($linktext ''$amount 10) {
        global 
$itemidnext$archivenext$startpos;
        if (
$this->skintype == 'item')
            
$this->_itemlink($itemidnext$linktext);
        else if (
$this->skintype == 'search' || $this->skintype == 'index')
            
$this->_searchlink($amount$startpos'next'$linktext);
        else
            
$this->_archivelink($archivenext$linktext);
    }
    
    
/**
     * returns either
     *        - a raw link (html/xml encoded) when no linktext is provided
     *        - a (x)html <a href... link when a text is present (text htmlencoded)
     */
    
function _link($url$linktext '')
    {
        
$u htmlspecialchars($url);
        
$u preg_replace("/&amp;amp;/",'&amp;',$u); // fix URLs that already had encoded ampersands
        
if ($linktext != '')
            
$l '<a href="' $u .'">'.htmlspecialchars($linktext).'</a>';
        else
            
$l $u;
        return 
$l;     
    }

    
/**
     * Outputs a next/prev link
     *
     * @param $maxresults
     *        The maximum amount of items shown per page (e.g. 10)
     * @param $startpos
     *        Current start position (requestVar('startpos'))
     * @param $direction
     *        either 'prev' or 'next'
     * @param $linktext
     *        When present, the output will be a full <a href...> link. When empty,
     *        only a raw link will be outputted
     */
    
function _searchlink($maxresults$startpos$direction$linktext '') {
        global 
$CONF$blog$query$amount;
        
// TODO: Move request uri to linkparams. this is ugly. sorry for that.
        
$startpos    intval($startpos);        // will be 0 when empty. 
        
$parsed        parse_url(serverVar('REQUEST_URI'));
        
$parsed        $parsed['query'];
        
$url        '';
        
        switch (
$direction) {
            case 
'prev':
                if ( 
intval($startpos) - intval($maxresults) >= 0) {
                    
$startpos     intval($startpos) - intval($maxresults);
                    
$url        $CONF['SearchURL'].'?'.alterQueryStr($parsed,'startpos',$startpos);
                }
                break;
            case 
'next':
                
$iAmountOnPage $this->amountfound;
                if (
$iAmountOnPage == 0)
                {
                    
// [%nextlink%] or [%prevlink%] probably called before [%blog%] or [%searchresults%]
                    // try a count query
                    
switch ($this->skintype)
                    {
                        case 
'index':
                            
$sqlquery $blog->getSqlBlog('''count');
                            break;
                        case 
'search':
                            
$sqlquery $blog->getSqlSearch($query$amount$unused_highlight'count');
                            break;
                    }
                    if (
$sqlquery
                        
$iAmountOnPage intval(quickQuery($sqlquery)) - intval($startpos);
                }
                if (
intval($iAmountOnPage) >= intval($maxresults)) {
                    
$startpos     intval($startpos) + intval($maxresults);                
                    
$url        $CONF['SearchURL'].'?'.alterQueryStr($parsed,'startpos',$startpos);
                }
                break;
            default:
                break;
        } 
// switch($direction)

        
if ($url != '')
            echo 
$this->_link($url$linktext);        
    }

    function 
_itemlink($id$linktext '') {
        global 
$CONF;
        if (
$id)
            echo 
$this->_link(createItemLink($id$this->linkparams), $linktext);
        else
            
$this->parse_todaylink($linktext);
    }

    function 
_archivelink($id$linktext '') {
        global 
$CONF$blog;
        if (
$id)
            echo 
$this->_link(createArchiveLink($blog->getID(), $id$this->linkparams), $linktext);
        else
            
$this->parse_todaylink($linktext);
    }
    
    
    function 
parse_itemlink($linktext '') {    
        global 
$itemid;
        
$this->_itemlink($itemid$linktext);
    }
    
    
/**
      * %archivedate(locale,date format)%
      */
    
function parse_archivedate($locale '-def-') {
        global 
$archive;
        
        if (
$locale == '-def-')
            
setlocale(LC_TIME,$template['LOCALE']);
        else
            
setlocale(LC_TIME,$locale);
        
        
// get archive date
        
sscanf($archive,'%d-%d-%d',$y,$m,$d);

        
// get format        
        
$args func_get_args();
        
// format can be spread over multiple parameters
        
if (sizeof($args) > 1) {
            
// take away locale
            
array_shift($args);
            
// implode
            
$format=implode(',',$args);
        } elseif (
$d == 0) {
            
$format '%B %Y';    
        } else {
            
$format '%d %B %Y';    
        }
        
        echo 
strftime($format,mktime(0,0,0,$m,$d?$d:1,$y));        
    }
    
    function 
parse_blog($template$amount 10$category '') {
        global 
$blog$startpos;
        
        list(
$limit$offset) = sscanf($amount'%d(%d)');
        
$this->_setBlogCategory($blog$category);
        
$this->_preBlogContent('blog',$blog);
        
$this->amountfound $blog->readLog($template$limit$offset$startpos);
        
$this->_postBlogContent('blog',$blog);
    }

    function 
parse_otherblog($blogname$template$amount 10$category '') {
        global 
$manager;

        list(
$limit$offset) = sscanf($amount'%d(%d)');

        
$b =& $manager->getBlog(getBlogIDFromName($blogname));
        
$this->_setBlogCategory($b$category);
        
$this->_preBlogContent('otherblog',$b);
        
$this->amountfound $b->readLog($template$limit$offset);
        
$this->_postBlogContent('otherblog',$b);
    }

    
// include one item (no comments)
    
function parse_item($template) {
        global 
$blog$itemid$highlight;
        
$this->_setBlogCategory($blog'');    // need this to select default category
        
$this->_preBlogContent('item',$blog);
        
$r $blog->showOneitem($itemid$template$highlight);
        if (
$r == 0)
            echo 
_ERROR_NOSUCHITEM;
        
$this->_postBlogContent('item',$blog);
    }

    function 
parse_itemid() {
        global 
$itemid;
        echo 
$itemid;
    }


    
// include comments for one item
    
function parse_comments($template) {
        global 
$itemid$manager$blog$highlight;
        
$template =& $manager->getTemplate($template);

        
// create parser object & action handler
        
$actions =& new ITEMACTIONS($blog);
        
$parser =& new PARSER($actions->getDefinedActions(),$actions);
        
$actions->setTemplate($template);
        
$actions->setParser($parser);
        
$item ITEM::getitem($itemid00);
        
$actions->setCurrentItem($item);

        
$comments =& new COMMENTS($itemid);
        
$comments->setItemActions($actions);
        
$comments->showComments($template, -11$highlight);    // shows ALL comments
    
}

    function 
parse_archive($template$category '') {
        global 
$blog$archive;
        
// can be used with either yyyy-mm or yyyy-mm-dd
        
sscanf($archive,'%d-%d-%d',$y,$m,$d);
        
$this->_setBlogCategory($blog$category);
        
$this->_preBlogContent('achive',$blog);
        
$blog->showArchive($template$y$m$d);
        
$this->_postBlogContent('achive',$blog);

    }

    function 
parse_otherarchive($blogname$template$category '') {
        global 
$archive$manager;
        
sscanf($archive,'%d-%d-%d',$y,$m,$d);
        
$b =& $manager->getBlog(getBlogIDFromName($blogname));
        
$this->_setBlogCategory($b$category);
        
$this->_preBlogContent('otherachive',$b);
        
$b->showArchive($template$y$m$d);
        
$this->_postBlogContent('otherachive',$b);
    }

    function 
parse_archivelist($template$category 'all'$limit 0) {
        global 
$blog;
        if (
$category == 'all'$category '';
        
$this->_preBlogContent('archivelist',$blog);
        
$this->_setBlogCategory($blog$category);
        
$blog->showArchiveList($template'month'$limit);
        
$this->_postBlogContent('archivelist',$blog);
    }

    function 
parse_archivedaylist($template$category 'all'$limit 0) {
        global 
$blog;
        if (
$category == 'all'$category '';
        
$this->_preBlogContent('archivelist',$blog);
        
$this->_setBlogCategory($blog$category);
        
$blog->showArchiveList($template'day'$limit);
        
$this->_postBlogContent('archivelist',$blog);
    }

    function 
parse_itemtitle($format '') {
        global 
$manager$itemid;
        
$item =& $manager->getItem($itemid,0,0);
        
        switch (
$format) {
            case 
'xml':
                echo 
stringToXML ($item['title']);
                break;
            case 
'attribute':
                echo 
stringToAttribute ($item['title']);
                break;
            case 
'raw':
                echo 
$item['title'];
                break;
            default:
        echo 
htmlspecialchars(strip_tags($item['title']));
                break;
        }
    }

    function 
parse_categorylist($template$blogname '') {
        global 
$blog$manager;

        if (
$blogname == '') {
            
$this->_preBlogContent('categorylist',$blog);
            
$blog->showCategoryList($template);
            
$this->_postBlogContent('categorylist',$blog);
        } else {
            
$b =& $manager->getBlog(getBlogIDFromName($blogname));
            
$this->_preBlogContent('categorylist',$b);
            
$b->showCategoryList($template);
            
$this->_postBlogContent('categorylist',$b);
        }
    }

    function 
parse_category($type 'name') {
        global 
$catid$blog;
        if (!
$blog->isValidCategory($catid))
            return;

        switch(
$type) {
            case 
'name':
                echo 
$blog->getCategoryName($catid);
                break;
            case 
'desc':
                echo 
$blog->getCategoryDesc($catid);
                break;
            case 
'id':
                echo 
$catid;
                break;
        }
    }

    function 
parse_otherarchivelist($blogname$template$category 'all'$limit 0) {
        global 
$manager;
        if (
$category == 'all'$category '';
        
$b =& $manager->getBlog(getBlogIDFromName($blogname));
        
$this->_setBlogCategory($b$category);
        
$this->_preBlogContent('otherarchivelist',$b);
        
$b->showArchiveList($template'month'$limit);
        
$this->_postBlogContent('otherarchivelist',$b);
    }

    function 
parse_otherarchivedaylist($blogname$template$category 'all'$limit 0) {
        global 
$manager;
        if (
$category == 'all'$category '';
        
$b =& $manager->getBlog(getBlogIDFromName($blogname));
        
$this->_setBlogCategory($b$category);
        
$this->_preBlogContent('otherarchivelist',$b);
        
$b->showArchiveList($template'day'$limit);
        
$this->_postBlogContent('otherarchivelist',$b);
    }

    function 
parse_searchresults($template$maxresults 50 ) {
        global 
$blog$query$amount$startpos;

        
$this->_setBlogCategory($blog'');    // need this to select default category
        
$this->_preBlogContent('searchresults',$blog);
        
$this->amountfound $blog->search($query$template$amount$maxresults$startpos);
        
$this->_postBlogContent('searchresults',$blog);
    }

    function 
parse_othersearchresults($blogname$template$maxresults 50) {
        global 
$query$amount$manager$startpos;
        
$b =& $manager->getBlog(getBlogIDFromName($blogname));
        
$this->_setBlogCategory($b'');    // need this to select default category
        
$this->_preBlogContent('othersearchresults',$b);
        
$b->search($query$template$amount$maxresults$startpos);
        
$this->_postBlogContent('othersearchresults',$b);
    }

    
// includes the search query
    
function parse_query() {
        global 
$query;
        echo 
htmlspecialchars($query);
    }
            
    
// include nucleus versionnumber
    
function parse_version() {
        global 
$nucleus;
        echo 
'Nucleus CMS ' $nucleus['version'];
    }
    

    function 
parse_errormessage() {
        global 
$errormessage;
        echo 
$errormessage;
    }


    function 
parse_imagetext() {            
        echo 
htmlspecialchars(requestVar('imagetext'));
    }
    
    function 
parse_image($what 'imgtag') {
        global 
$CONF;

        
$imagetext     htmlspecialchars(requestVar('imagetext'));
        
$imagepopup requestVar('imagepopup');
        
$width         intRequestVar('width');
        
$height     intRequestVar('height');
        
$fullurl     htmlspecialchars($CONF['MediaURL'] . $imagepopup);
        
        switch(
$what)
        {
            case 
'url':
                echo 
$fullurl;
                break;
            case 
'width':
                echo 
$width;
                break;
            case 
'height':
                echo 
$height;
                break;
            case 
'caption':
            case 
'text':            
                echo 
$imagetext;
                break;
            case 
'imgtag':
            default:
                echo 
"<img src=\"$fullurl\" width=\"$width\" height=\"$height\" alt=\"$imagetext\" title=\"$imagetext\" />";
                break;
        }
    }
    
    
// When commentform is not used, to include a hidden field with itemid
    
function parse_vars() {
        global 
$itemid;
        echo 
'<input type="hidden" name="itemid" value="'.$itemid.'" />';
    }
    
    
// include a sitevar
    
function parse_sitevar($which) {
        global 
$CONF;
        switch(
$which) {
            case 
'url':
                echo 
$CONF['IndexURL'];
                break;
            case 
'name':
                echo 
$CONF['SiteName'];
                break;
            case 
'admin':
                echo 
$CONF['AdminEmail'];
                break;
            case 
'adminurl':
                echo 
$CONF['AdminURL'];
        }            
    }
    
    
// shortcut for admin url
    
function parse_adminurl() { $this->parse_sitevar('adminurl'); }
    
    function 
parse_blogsetting($which) {
        global 
$blog;
        switch(
$which) {
            case 
'id':
                echo 
$blog->getID();
                break;
            case 
'url':
                echo 
$blog->getURL();
                break;
            case 
'name':
                echo 
$blog->getName();
                break;
            case 
'desc':
                echo 
$blog->getDescription();
                break;
            case 
'short':
                echo 
$blog->getShortName();
                break;                 
        }    
    }
    
    
// includes a member info thingie
    
function parse_member($what) {
        global 
$memberinfo$member;
        
        
// 1. only allow the member-details-page specific variables on member pages
        
if ($this->skintype == 'member') {

            switch(
$what) {
                case 
'name':
                    echo 
$memberinfo->getDisplayName();
                    break;
                case 
'realname':
                    echo 
$memberinfo->getRealName();
                    break;
                case 
'notes':
                    echo 
$memberinfo->getNotes();
                    break;
                case 
'url':
                    echo 
$memberinfo->getURL();
                    break;
                case 
'email':
                    echo 
$memberinfo->getEmail();
                    break;
                case 
'id':
                    echo 
$memberinfo->getID();
                    break;                    
            }    
        }
        
        
// 2. the next bunch of options is available everywhere, as long as the user is logged in
        
if ($member->isLoggedIn())
        {
            switch(
$what) {
                case 
'yourname':
                    echo 
$member->getDisplayName();
                    break;
                case 
'yourrealname':
                    echo 
$member->getRealName();
                    break;
                case 
'yournotes':
                    echo 
$member->getNotes();
                    break;
                case 
'yoururl':
                    echo 
$member->getURL();
                    break;
                case 
'youremail':
                    echo 
$member->getEmail();
                    break;
                case 
'yourid':
                    echo 
$member->getID();
                    break;                                    
            }    
        }

    }
    
    function 
parse_preview($template) {
        global 
$blog$CONF$manager;
        
        
$template =& $manager->getTemplate($template);
        
$row['body'] = '<span id="prevbody"></span>';
        
$row['title'] = '<span id="prevtitle"></span>';
        
$row['more'] = '<span id="prevmore"></span>';
        
$row['itemlink'] = '';
        
$row['itemid'] = 0$row['blogid'] = $blog->getID();
        echo 
TEMPLATE::fill($template['ITEM_HEADER'],$row);
        echo 
TEMPLATE::fill($template['ITEM'],$row);
        echo 
TEMPLATE::fill($template['ITEM_FOOTER'],$row);
    }
    
    function 
parse_additemform() {
        global 
$blog$CONF;
        
$this->formdata = array(
            
'adminurl' => htmlspecialchars($CONF['AdminURL']),
            
'catid' => $blog->getDefaultCategory()
        );
        
$blog->InsertJavaScriptInfo(); 
        
$this->doForm('additemform');
    }

    
/**
      * Executes a plugin skinvar
      *
      * @param pluginName name of plugin (without the NP_)
      * 
      * extra parameters can be added
      */
    
function parse_plugin($pluginName) {
        global 
$manager;
        
        
// only continue when the plugin is really installed
        
if (!$manager->pluginInstalled('NP_' $pluginName))
            return;
        
        
$plugin =& $manager->getPlugin('NP_' $pluginName);
        if (!
$plugin) return;

        
// get arguments
        
$params func_get_args();
        
        
// remove plugin name 
        
array_shift($params);
        
        
// add skin type on front
        
array_unshift($params$this->skintype);
        
        
call_user_func_array(array(&$plugin,'doSkinVar'), $params);
    }

            
    function 
parse_commentform($destinationurl '') {
        global 
$blog$itemid$member$CONF$manager$DIR_LIBS$errormessage;
        
        
// warn when trying to provide a actionurl (used to be a parameter in Nucleus <2.0)
        
if (stristr($destinationurl'action.php')) {
            
$args func_get_args();
            
$destinationurl $args[1];
            
ACTIONLOG::add(WARNING,'actionurl is not longer a parameter on commentform skinvars. Moved to be a global setting instead.');
        }
        
        
$actionurl $CONF['ActionURL'];
        
        
// if item is closed, show message and do nothing
        
$item =& $manager->getItem($itemid,0,0);
        if (
$item['closed'] || !$blog->commentsEnabled()) {
            
$this->doForm('commentform-closed');
            return;
        }
        
        if (!
$destinationurl)
        {
            
$destinationurl createLink(
                
'item'
                array(
                    
'itemid' => $itemid,
                    
'title' => $item['title'],
                    
'timestamp' => $item['timestamp'],
                    
'extra' => $this->linkparams
                
)
            );
        }

        
// values to prefill
        
$user cookieVar($CONF['CookiePrefix'] .'comment_user');
        if (!
$user$user postVar('user');
        
$userid cookieVar($CONF['CookiePrefix'] .'comment_userid');
        if (!
$userid$userid postVar('userid');
        
$body postVar('body');
        
        
$this->formdata = array(
            
'destinationurl' => htmlspecialchars($destinationurl),
            
'actionurl' => htmlspecialchars($actionurl),
            
'itemid' => $itemid,
            
'user' => htmlspecialchars($user),
            
'userid' => htmlspecialchars($userid),            
            
'body' => htmlspecialchars($body),            
            
'membername' => $member->getDisplayName(),
            
'rememberchecked' => cookieVar($CONF['CookiePrefix'] .'comment_user')?'checked="checked"':''
        
);
        
        if (!
$member->isLoggedIn()) {
            
$this->doForm('commentform-notloggedin');
        } else {
            
$this->doForm('commentform-loggedin');        
        }
    }

    function 
parse_loginform() {
        global 
$member$CONF;
        if (!
$member->isLoggedIn()) {
            
$filename 'loginform-notloggedin';
            
$this->formdata = array();
        } else {
            
$filename 'loginform-loggedin';
            
$this->formdata = array(
                
'membername' => $member->getDisplayName(),
            );
        }
        
$this->doForm($filename);
    }    
    
    
    function 
parse_membermailform($rows 10$cols 40$desturl '') {
        global 
$member$CONF$memberid;
        
        if (
$desturl == '') {
            if (
$CONF['URLMode'] == 'pathinfo')
                
$desturl createMemberLink($memberid);
            else
                
$desturl $CONF['IndexURL'] . createMemberLink($memberid);                
        }
            
        
$message postVar('message');
        
$frommail postVar('frommail');
        
        
$this->formdata = array(
            
'url' => htmlspecialchars($desturl),
            
'actionurl' => htmlspecialchars($CONF['ActionURL']),
            
'memberid' => $memberid,
            
'rows' => $rows,
            
'cols' => $cols,
            
'message' => htmlspecialchars($message),
            
'frommail' => htmlspecialchars($frommail)
        );
        if (
$member->isLoggedIn()) {
            
$this->doForm('membermailform-loggedin');
        } else if (
$CONF['NonmemberMail']) {
            
$this->doForm('membermailform-notloggedin');        
        } else {
            
$this->doForm('membermailform-disallowed');        
        }

    }

    function 
parse_searchform($blogname '') {
        global 
$CONF$manager$maxresults;
        if (
$blogname) {
            
$blog =& $manager->getBlog(getBlogIDFromName($blogname));
        } else {
            global 
$blog;
        }
        
// use default blog when no blog is selected
        
$this->formdata = array(
            
'id' => $blog?$blog->getID():$CONF['DefaultBlog'],
            
'query' => htmlspecialchars(getVar('query')),
        );
        
$this->doForm('searchform');
    }

    function 
parse_nucleusbutton($imgurl '',
                                 
$imgwidth '85',
                                 
$imgheight '31') {
        global 
$CONF;
        if (
$imgurl == '') {
            
$imgurl $CONF['AdminURL'] . 'nucleus.gif';
        } else if (
PARSER::getProperty('IncludeMode') == 'skindir'){
            
// when skindit IncludeMode is used: start from skindir
            
$imgurl $CONF['SkinsURL'] . PARSER::getProperty('IncludePrefix') . $imgurl;
        }

        
$this->formdata = array(
            
'imgurl' => $imgurl,
            
'imgwidth' => $imgwidth,
            
'imgheight' => $imgheight,
        );
        
$this->doForm('nucleusbutton');
    }
    
    function 
parse_self() {
        global 
$CONF;
        echo 
$CONF['Self'];
    }
    
    function 
parse_referer() {
        echo 
htmlspecialchars(serverVar('HTTP_REFERER'));
    }
    
    function 
parse_charset() {
        echo 
_CHARSET;
    }

    
/**
      * Helper function that sets the category that a blog will need to use 
      *
      * @param $blog
      *        An object of the blog class, passed by reference (we want to make changes to it)
      * @param $catname
      *        The name of the category to use
      */
    
function _setBlogCategory(&$blog$catname) {
        global 
$catid;
        if (
$catname != '')
            
$blog->setSelectedCategoryByName($catname);
        else
            
$blog->setSelectedCategory($catid);
    }
    
    function 
_preBlogContent($type, &$blog) {
        global 
$manager;
        
$manager->notify('PreBlogContent',array('blog' => &$blog'type' => $type));
    }

    function 
_postBlogContent($type, &$blog) {
        global 
$manager;
        
$manager->notify('PostBlogContent',array('blog' => &$blog'type' => $type));
    }

}

?>