-
Notifications
You must be signed in to change notification settings - Fork 6
/
ext_php_api.dat
1527 lines (1124 loc) · 107 KB
/
ext_php_api.dat
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
a:2:{s:4:"meta";a:3:{s:5:"title";s:24:"Frontend User Management";s:5:"descr";s:255:"User registration and edit plugin, fully configurable, custom validators, autologin, double-opt-in, admin approval, IRRE configuration, resend activation mail, redirect features, support for md5/salted md5 extensions, support for salesforce. More to come!";s:7:"options";a:2:{s:10:"usageCount";s:1:"1";s:19:"includeCodeAbstract";s:1:"1";}}s:5:"files";a:4:{s:14:"MD5_bdff62bd93";a:5:{s:8:"filename";s:41:"lib/class.tx_datamintsfeuser_flexform.php";s:8:"filesize";i:2215;s:6:"header";a:5:{s:4:"text";s:86:"
Class 'tx_datamintsfeuser_flexform' which gets all field names from the "fe_users".
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}s:5:"other";a:3:{i:0;s:54:"@author Bernhard baumgartl <[email protected]>";i:1;s:14:"@package TYPO3";i:2;s:30:"@subpackage tx_datamintsfeuser";}s:11:"other_index";a:3:{s:7:"@author";a:1:{i:0;s:46:"Bernhard baumgartl <[email protected]>";}s:8:"@package";a:1:{i:0;s:6:"TYPO3 ";}s:11:"@subpackage";a:1:{i:0;s:19:"tx_datamintsfeuser ";}}}s:3:"DAT";a:2:{i:1;a:5:{s:6:"header";s:35:"class tx_datamintsfeuser_flexform {";s:5:"class";i:1;s:11:"parentClass";s:27:"tx_datamintsfeuser_flexform";s:4:"cDat";a:5:{s:4:"text";s:86:"
Class 'tx_datamintsfeuser_flexform' which gets all field names from the "fe_users".
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}s:5:"other";a:3:{i:0;s:54:"@author Bernhard baumgartl <[email protected]>";i:1;s:14:"@package TYPO3";i:2;s:30:"@subpackage tx_datamintsfeuser";}s:11:"other_index";a:3:{s:7:"@author";a:1:{i:0;s:46:"Bernhard baumgartl <[email protected]>";}s:8:"@package";a:1:{i:0;s:6:"TYPO3 ";}s:11:"@subpackage";a:1:{i:0;s:19:"tx_datamintsfeuser ";}}}s:6:"atLine";i:44;}i:3;a:7:{s:6:"header";s:40:"public function getFieldNames($config) {";s:11:"parentClass";s:27:"tx_datamintsfeuser_flexform";s:4:"cDat";a:3:{s:4:"text";s:98:"
The getFields method is used to get the "fe_users" field names into the flexform of the plugin.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:5:"array";i:1;s:29:"$config: The fields selected.";}}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:7:"$config";}}s:7:"content";a:2:{i:0;s:584:" // TCA-Teil laden. Damit koennen wir alle Felder durchgehen.
t3lib_div::loadTCA('fe_users');
$fieldList = array();
foreach ($GLOBALS['TCA']['fe_users']['columns'] as $key => $_){
$fieldList[] = array($key, $key);
}
$config['items'] = array_merge($config['items'], $fieldList);
return $config;
}
}
if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/datamints_feuser/lib/class.tx_datamintsfeuser_flexform.php']) {
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/datamints_feuser/lib/class.tx_datamintsfeuser_flexform.php']);
}
?>";i:1;i:0;}s:12:"content_size";i:584;s:13:"content_lines";i:20;s:6:"atLine";i:52;}}s:10:"usageCount";a:2:{s:12:"H_bc78dc17ad";a:2:{s:24:"_searchtime_milliseconds";d:13;s:15:"_functionHeader";s:35:"class tx_datamintsfeuser_flexform {";}s:12:"H_a268f3a649";a:2:{s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:40:"public function getFieldNames($config) {";}}}s:14:"MD5_d945c5944b";a:5:{s:8:"filename";s:43:"lib/class.tx_datamintsfeuser_salesforce.php";s:8:"filesize";i:3398;s:6:"header";a:5:{s:4:"text";s:61:"
Library 'Salesforce' for the 'datamints_feuser' extension.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}s:5:"other";a:3:{i:0;s:54:"@author Bernhard Baumgartl <[email protected]>";i:1;s:14:"@package TYPO3";i:2;s:30:"@subpackage tx_datamintsfeuser";}s:11:"other_index";a:3:{s:7:"@author";a:1:{i:0;s:46:"Bernhard Baumgartl <[email protected]>";}s:8:"@package";a:1:{i:0;s:6:"TYPO3 ";}s:11:"@subpackage";a:1:{i:0;s:19:"tx_datamintsfeuser ";}}}s:3:"DAT";a:3:{i:1;a:8:{s:6:"header";s:37:"class tx_datamintsfeuser_salesforce {";s:5:"class";i:1;s:11:"parentClass";s:29:"tx_datamintsfeuser_salesforce";s:4:"cDat";a:5:{s:4:"text";s:61:"
Library 'Salesforce' for the 'datamints_feuser' extension.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}s:5:"other";a:3:{i:0;s:54:"@author Bernhard Baumgartl <[email protected]>";i:1;s:14:"@package TYPO3";i:2;s:30:"@subpackage tx_datamintsfeuser";}s:11:"other_index";a:3:{s:7:"@author";a:1:{i:0;s:46:"Bernhard Baumgartl <[email protected]>";}s:8:"@package";a:1:{i:0;s:6:"TYPO3 ";}s:11:"@subpackage";a:1:{i:0;s:19:"tx_datamintsfeuser ";}}}s:7:"content";a:2:{i:0;s:73:"
const alreadyExecuted = 'userAlreadyAddedToSalesforceInThisSession';
";i:1;i:-1;}s:12:"content_size";i:73;s:13:"content_lines";i:3;s:6:"atLine";i:45;}i:3;a:4:{s:6:"header";s:38:"public function main($params, $pObj) {";s:11:"parentClass";s:29:"tx_datamintsfeuser_salesforce";s:4:"cDat";a:3:{s:4:"text";s:139:"
Maps the typo3 fields to the salesforce fields and submits it to salesforce.
This will only be done if the user is completely activated!
";s:5:"param";a:2:{i:0;a:2:{i:0;s:5:"array";i:1;s:7:"$params";}i:1;a:2:{i:0;s:6:"object";i:1;s:5:"$pObj";}}s:6:"return";a:2:{i:0;s:4:"null";i:1;s:0:"";}}s:6:"atLine";i:57;}i:5;a:7:{s:6:"header";s:57:"public function getMappingFields($mappings, $variables) {";s:11:"parentClass";s:29:"tx_datamintsfeuser_salesforce";s:4:"cDat";a:3:{s:4:"text";s:26:"
Gets the mapped fields.
";s:5:"param";a:2:{i:0;a:2:{i:0;s:5:"array";i:1;s:9:"$mappings";}i:1;a:2:{i:0;s:5:"array";i:1;s:10:"$variables";}}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:7:"$fields";}}s:7:"content";a:2:{i:0;s:518:" $fields = array();
$cObj = t3lib_div::makeInstance('tslib_cObj');
$cObj->data = $variables;
foreach ($mappings as $field => $stdWrapConfig) {
$fields[rtrim($field, '.')] = $cObj->stdWrap('', $stdWrapConfig);
}
return $fields;
}
}
if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/datamints_feuser/lib/class.tx_datamintsfeuser_salesforce.php']) {
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/datamints_feuser/lib/class.tx_datamintsfeuser_salesforce.php']);
}
?>";i:1;i:0;}s:12:"content_size";i:518;s:13:"content_lines";i:18;s:6:"atLine";i:103;}}s:10:"usageCount";a:3:{s:12:"H_32c2929e28";a:2:{s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:37:"class tx_datamintsfeuser_salesforce {";}s:12:"H_9c088bb76a";a:2:{s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:38:"public function main($params, $pObj) {";}s:12:"H_1cb7ca714b";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:14:"MD5_d945c5944b";a:3:{s:8:"fileName";s:43:"lib/class.tx_datamintsfeuser_salesforce.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:57:"public function getMappingFields($mappings, $variables) {";}}}s:14:"MD5_850248a7ec";a:5:{s:8:"filename";s:38:"lib/class.tx_datamintsfeuser_utils.php";s:8:"filesize";i:19046;s:6:"header";a:5:{s:4:"text";s:56:"
Library 'Utils' for the 'datamints_feuser' extension.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}s:5:"other";a:3:{i:0;s:54:"@author Bernhard Baumgartl <[email protected]>";i:1;s:14:"@package TYPO3";i:2;s:30:"@subpackage tx_datamintsfeuser";}s:11:"other_index";a:3:{s:7:"@author";a:1:{i:0;s:46:"Bernhard Baumgartl <[email protected]>";}s:8:"@package";a:1:{i:0;s:6:"TYPO3 ";}s:11:"@subpackage";a:1:{i:0;s:19:"tx_datamintsfeuser ";}}}s:3:"DAT";a:22:{i:1;a:8:{s:6:"header";s:32:"class tx_datamintsfeuser_utils {";s:5:"class";i:1;s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:5:{s:4:"text";s:56:"
Library 'Utils' for the 'datamints_feuser' extension.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}s:5:"other";a:3:{i:0;s:54:"@author Bernhard Baumgartl <[email protected]>";i:1;s:14:"@package TYPO3";i:2;s:30:"@subpackage tx_datamintsfeuser";}s:11:"other_index";a:3:{s:7:"@author";a:1:{i:0;s:46:"Bernhard Baumgartl <[email protected]>";}s:8:"@package";a:1:{i:0;s:6:"TYPO3 ";}s:11:"@subpackage";a:1:{i:0;s:19:"tx_datamintsfeuser ";}}}s:7:"content";a:2:{i:0;s:2:"
";i:1;i:-1;}s:12:"content_size";i:2;s:13:"content_lines";i:1;s:6:"atLine";i:64;}i:3;a:7:{s:6:"header";s:51:"public static function getFeUsersTca($feUsersTca) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:85:"
Ueberschreibt eventuell vorhandene TCA Konfiguration mit TypoScript Konfiguration.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:5:"array";i:1;s:11:"$feUsersTca";}}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:17:"$globalFeUsersTca";}}s:7:"content";a:2:{i:0;s:308:" $GLOBALS['TSFE']->includeTCA();
$globalFeUsersTca = $GLOBALS['TCA']['fe_users'];
if ($feUsersTca) {
$globalFeUsersTca['columns'] = t3lib_div::array_merge_recursive_overrule((array)$globalFeUsersTca['columns'], (array)t3lib_div::removeDotsFromTS($feUsersTca));
}
return $globalFeUsersTca;
}
";i:1;i:0;}s:12:"content_size";i:308;s:13:"content_lines";i:10;s:6:"atLine";i:72;}i:5;a:7:{s:6:"header";s:57:"public static function getStoragePageId($storagePageId) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:78:"
Ermittelt die General Record Storage Pid, falls keine Pid uebergeben wurde.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:7:"integer";i:1;s:14:"$storagePageId";}}s:6:"return";a:2:{i:0;s:7:"integer";i:1;s:11:"$storagePid";}}s:7:"content";a:2:{i:0;s:184:" if (!$storagePageId) {
$arrayRootPids = $GLOBALS['TSFE']->getStorageSiterootPids();
$storagePageId = $arrayRootPids['_STORAGE_PID'];
}
return intval($storagePageId);
}
";i:1;i:0;}s:12:"content_size";i:184;s:13:"content_lines";i:8;s:6:"atLine";i:89;}i:7;a:7:{s:6:"header";s:74:"public static function getTypoLinkUrl($params, $urlParameters = array()) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:53:"
Ermittelt die Url zu einer Seite oder einer Datei.
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"string";i:1;s:7:"$params";}i:1;a:2:{i:0;s:5:"array";i:1;s:14:"$urlParameters";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:9:"$pageLink";}}s:7:"content";a:2:{i:0;s:138:" $cObj = t3lib_div::makeInstance('tslib_cObj');
$pageLink = $cObj->getTypoLink_URL($params, $urlParameters);
return $pageLink;
}
";i:1;i:0;}s:12:"content_size";i:138;s:13:"content_lines";i:6;s:6:"atLine";i:105;}i:9;a:7:{s:6:"header";s:60:"public static function currentUserWrap($content, $stdWrap) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:60:"
Fuehrt einen stdWrap mit den aktuellen Benutzerdaten aus.
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"string";i:1;s:8:"$content";}i:1;a:2:{i:0;s:5:"array";i:1;s:8:"$stdWrap";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:8:"$content";}}s:7:"content";a:2:{i:0;s:149:" $cObj = t3lib_div::makeInstance('tslib_cObj');
$cObj->data = $GLOBALS['TSFE']->fe_user->user;
return $cObj->stdWrap($content, $stdWrap);
}
";i:1;i:0;}s:12:"content_size";i:149;s:13:"content_lines";i:6;s:6:"atLine";i:119;}i:11;a:7:{s:6:"header";s:39:"public static function fixPath($path) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:129:"
Wird verwendet, um doppelte Schraegstriche zu vermeiden.
Der Pfad wird mit einem abschliessenden Schraegstrich zurueckgegeben.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"string";i:1;s:5:"$path";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:5:"$path";}}s:7:"content";a:2:{i:0;s:43:" return dirname($path . '/.') . '/';
}
";i:1;i:0;}s:12:"content_size";i:43;s:13:"content_lines";i:3;s:6:"atLine";i:133;}i:13;a:7:{s:6:"header";s:70:"public static function htmlspecialcharsPostArray(&$arrPost, $decode) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:150:"
Konvertiert alle Werte des uebergebenen Post Arrays um z.B. XSS zu verhindern.
Der Modus gibt an ob die Werte encodiert oder decodiert werden soll.
";s:5:"param";a:2:{i:0;a:2:{i:0;s:5:"array";i:1;s:78:"$arrPost // Call by reference: Das Post Array dessen Werte konvertiert werden.";}i:1;a:2:{i:0;s:7:"boolean";i:1;s:7:"$decode";}}s:6:"return";a:2:{i:0;s:7:"boolean";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" if ($decode) {
// Konvertiert alle moeglichen Zeichen die fuer die Ausgabe angepasst wurden zurueck.
foreach ($arrPost as $key => $val) {
if (!is_array($arrPost[$key])) {
$arrPost[$key] = htmlspecialchars_decode($val);
}
}
} else {
// Konvertiert alle moeglichen Zeichen der Ausgabe, die stoeren koennten (XSS).
foreach ($arrPost as $key => $v
[...]
array_walk_recursive($arrPost[$key], 'tx_datamintsfeuser_utils::stripTagsCallback');
}
}
}
return TRUE;
}
";i:1;i:1;}s:12:"content_size";i:784;s:13:"content_lines";i:23;s:6:"atLine";i:145;}i:15;a:7:{s:6:"header";s:65:"public static function shiftEmptyArrayValuePostArray(&$arrPost) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:171:"
Es wird jeder Wert im Post Array ueberprueft ob er ein Array ist.
Wenn dass der Fall ist, wird der erste Wert in diesem Array entfernt, falls dieser ein Leerstring ist.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:5:"array";i:1;s:45:"$arrPost // Call by reference: Das Post Array";}}s:6:"return";a:2:{i:0;s:7:"boolean";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:172:" foreach($arrPost as $key => $value) {
if (is_array($value) && $value[0] === '') {
array_shift($value);
$arrPost[$key] = $value;
}
}
return TRUE;
}
";i:1;i:0;}s:12:"content_size";i:172;s:13:"content_lines";i:11;s:6:"atLine";i:176;}i:17;a:7:{s:6:"header";s:76:"public static function generatePassword($password, $arrGenerate = array()) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:125:"
Erstellt wenn gefordert ein Password, und verschluesselt dieses, oder das uebergebene, wenn es verschluesselt werden soll.
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"string";i:1;s:9:"$password";}i:1;a:2:{i:0;s:5:"array";i:1;s:12:"$arrGenerate";}}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:12:"$arrPassword";}}s:7:"content";a:2:{i:0;s:507:" $arrPassword = array();
// Uebergebenes Password setzten.
// Hier wird kein strip_tags() o.Ae. benoetigt, da beim schreiben in die Datenbank immer "$GLOBALS['TYPO3_DB']->fullQuoteStr()" ausgefuehrt wird!
$arrPassword['normal'] = trim($password);
// Erstellt ein Password.
if ($arrGenerate['mode']) {
$chars = '23456789abcdefghjkmnpqrstuvwxyzABCDEFGHIKLMNPQRS
[...]
rd['encrypted'] = $tx_t3secsaltedpw_phpass->getHashedPassword($arrPassword['normal']);
}
}
return $arrPassword;
}
";i:1;i:1;}s:12:"content_size";i:2192;s:13:"content_lines";i:56;s:6:"atLine";i:195;}i:19;a:7:{s:6:"header";s:77:"public static function checkPassword($submittedPassword, $originalPassword) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:172:"
Ueberprueft anhand der aktuellen Verschluesselungsextension, ob das uebergebene unverschluesselte Passwort mit dem uebergebenen verschluesselten Passwort uebereinstimmt.
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"string";i:1;s:18:"$submittedPassword";}i:1;a:2:{i:0;s:6:"string";i:1;s:17:"$originalPassword";}}s:6:"return";a:2:{i:0;s:7:"boolean";i:1;s:6:"$check";}}s:7:"content";a:2:{i:0;s:507:" $check = FALSE;
// Wenn "saltedpasswords" installiert ist wird deren Konfiguration geholt, und je nach Einstellung das Password ueberprueft.
if (t3lib_extMgm::isLoaded('saltedpasswords') && $GLOBALS['TYPO3_CONF_VARS']['FE']['loginSecurityLevel']) {
$saltedpasswords = tx_saltedpasswords_div::returnExtConf();
if ($saltedpasswords['enabled']) {
$tx_saltedpas
[...]
chluesselung).
else {
if ($submittedPassword == $originalPassword) {
$check = TRUE;
}
}
return $check;
}
";i:1;i:1;}s:12:"content_size";i:1740;s:13:"content_lines";i:51;s:6:"atLine";i:259;}i:21;a:7:{s:6:"header";s:86:"public static function userAutoLogin($userId, $pageId = 0, $urlParameters = array()) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:43:"
Vollzieht einen Login ohne ein Passwort.
";s:5:"param";a:3:{i:0;a:2:{i:0;s:7:"integer";i:1;s:7:"$userId";}i:1;a:2:{i:0;s:7:"integer";i:1;s:7:"$pageId";}i:2;a:2:{i:0;s:5:"array";i:1;s:14:"$urlParameters";}}s:6:"return";a:2:{i:0;s:4:"void";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:302:" // Login vollziehen.
$GLOBALS['TSFE']->fe_user->checkPid = 0;
$userRecord = $GLOBALS['TSFE']->fe_user->getRawUserByUid($userId);
$GLOBALS['TSFE']->fe_user->createUserSession($userRecord);
// Umleiten, damit der Login wirksam wird.
self::userRedirect($pageId, $urlParameters, TRUE);
}
";i:1;i:0;}s:12:"content_size";i:302;s:13:"content_lines";i:11;s:6:"atLine";i:319;}i:23;a:7:{s:6:"header";s:105:"public static function userRedirect($pageId = 0, $urlParameters = array(), $disableAccessCheck = FALSE) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:82:"
Vollzieht einen Redirect mit der Seite die benutzt wird, oder auf die aktuelle.
";s:5:"param";a:3:{i:0;a:2:{i:0;s:7:"integer";i:1;s:7:"$pageId";}i:1;a:2:{i:0;s:5:"array";i:1;s:14:"$urlParameters";}i:2;a:2:{i:0;s:7:"boolean";i:1;s:19:"$disableAccessCheck";}}s:6:"return";a:2:{i:0;s:4:"void";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" // Normalen Redirect, oder Redirect auf die gewuenschte Seite.
if (!$pageId) {
$pageId = $GLOBALS['TSFE']->id;
}
// Damit man auch auf Seiten die erst nach dem Login sichtbar sind umleiten kann, wird hier die Gruppen Zugangsüberprüfung vorrübergehend deaktiviert.
// Das wird aber nur bei einem Autologin benötigt, da sich nur dort der Status des Users wäh
[...]
lf::getTypoLinkUrl($pageId, $urlParameters);
header('Location: ' . t3lib_div::locationHeaderUrl($pageLink));
exit;
}
";i:1;i:1;}s:12:"content_size";i:803;s:13:"content_lines";i:18;s:6:"atLine";i:339;}i:25;a:7:{s:6:"header";s:45:"public static function escapeBrackets($url) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:50:"
URL encoded die eckigen Klammern in einem Link.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"string";i:1;s:4:"$url";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:128:" $replace = array('[' => '%5b', ']' => '%5d');
return str_replace(array_keys($replace), array_values($replace), $url);
}
";i:1;i:0;}s:12:"content_size";i:128;s:13:"content_lines";i:5;s:6:"atLine";i:364;}i:27;a:7:{s:6:"header";s:55:"public static function getSpecialFieldKey($fieldName) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:110:"
Fuegt die '--' Zeichen vor und hinter dem eigendlichen Feldnamen, hinzu um den eindeutigen Key zu bekommen.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"string";i:1;s:10:"$fieldName";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:40:" return '--' . $fieldName . '--';
}
";i:1;i:0;}s:12:"content_size";i:40;s:13:"content_lines";i:3;s:6:"atLine";i:376;}i:29;a:7:{s:6:"header";s:56:"public static function getSpecialFieldName($fieldName) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:113:"
Ersetzt die beim Eingeben angegebenen '--' Zeichen vor und hinter dem eigendlichen Feldnamen, falls vorhanden.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"string";i:1;s:10:"$fieldName";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:135:" if (preg_match('/^--.*--$/', $fieldName)) {
return preg_replace('/^--(.*)--$/', '\1', $fieldName);
}
return $fieldName;
}
";i:1;i:0;}s:12:"content_size";i:135;s:13:"content_lines";i:7;s:6:"atLine";i:386;}i:31;a:7:{s:6:"header";s:58:"public static function convertHtmlEmailToPlain($content) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:59:"
Convertiert eine HTML E-Mail zu einer Plain Text E-Mail.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"string";i:1;s:8:"$content";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:8:"$content";}}s:7:"content";a:2:{i:0;s:507:" $newLine = chr(13) . chr(10);
// Den Head entfernen.
$content = preg_replace('/<head>.*?<\/head>/s', '', $content, 1);
// Links auflösen (A-Tag entfernen und Href extrahieren).
$content = preg_replace('/<a[^>]*href="([^"]*)"[^>]*>[^<]*<\/a>/i', ' $1 ', $content);
// Nach jedem schliessenden Tag eine Leerzeile einfuegen.
$content = preg_replace('/>/i', '>'
[...]
araus machen.
$content = preg_replace('/(' . $newLine . '){2,}/', $newLine . $newLine, $content);
return $content;
}
";i:1;i:1;}s:12:"content_size";i:980;s:13:"content_lines";i:32;s:6:"atLine";i:400;}i:33;a:7:{s:6:"header";s:97:"public static function getTemplateSubpart($templateFile, $templatePart, $markerArray = array()) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:74:"
Holt einen Subpart des Standardtemplates und ersetzt uebergeben Marker.
";s:5:"param";a:3:{i:0;a:2:{i:0;s:6:"string";i:1;s:13:"$templateFile";}i:1;a:2:{i:0;s:6:"string";i:1;s:13:"$templatePart";}i:2;a:2:{i:0;s:5:"array";i:1;s:12:"$markerArray";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:9:"$template";}}s:7:"content";a:2:{i:0;s:404:" // Template laden.
$cObj = t3lib_div::makeInstance('tslib_cObj');
$template = $cObj->fileResource($templateFile);
$template = $cObj->getSubpart($template, '###' . strtoupper($templatePart) . '###');
// if (!self::checkUtf8($template)) {
// $template = utf8_encode($template);
// }
$template = $cObj->substituteMarkerArray($template, $markerArray, '###|###', 1);
return $template;
}
";i:1;i:0;}s:12:"content_size";i:404;s:13:"content_lines";i:14;s:6:"atLine";i:441;}i:35;a:7:{s:6:"header";s:91:"public static function getFlexformConfigurationFromTab($flexData, $sTab, $conf = array()) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:76:"
Parst das Flexform Konfigurations Array und schreibt alle Werte in $conf.
";s:5:"param";a:3:{i:0;a:2:{i:0;s:5:"array";i:1;s:9:"$flexData";}i:1;a:2:{i:0;s:6:"string";i:1;s:5:"$sTab";}i:2;a:2:{i:0;s:5:"array";i:1;s:5:"$conf";}}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:5:"$conf";}}s:7:"content";a:2:{i:0;s:507:" if (isset($flexData['data'][$sTab]['lDEF'])) {
$flexData = $flexData['data'][$sTab]['lDEF'];
}
if (!is_array($flexData)) {
return $conf;
}
foreach ($flexData as $key => $value) {
if (!is_array($value)) {
continue;
}
if (is_array($value['el']) && count($value['el']) > 0) {
foreach ($value['el'] as $ekey => $element) {
if (!is_array($
[...]
$value['el'], $sTab, $conf);
}
if ($value['vDEF']) {
$conf[$key] = $value['vDEF'];
}
}
return $conf;
}
";i:1;i:1;}s:12:"content_size";i:803;s:13:"content_lines";i:37;s:6:"atLine";i:464;}i:37;a:7:{s:6:"header";s:75:"public static function setFlexformConfigurationValue($key, $value, $conf) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:106:"
Ueberschreibt eventuell vorhandene TypoScript Konfigurationen mit den Konfigurationen aus der Flexform.
";s:5:"param";a:3:{i:0;a:2:{i:0;s:6:"string";i:1;s:4:"$key";}i:1;a:2:{i:0;s:6:"string";i:1;s:6:"$value";}i:2;a:2:{i:0;s:5:"array";i:1;s:5:"$conf";}}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:5:"$conf";}}s:7:"content";a:2:{i:0;s:489:" if (strpos($key, '.') !== FALSE && $value) {
$arrKey = t3lib_div::trimExplode('.', $key, TRUE);
for ($i = count($arrKey) - 1; $i >= 0; $i--) {
$newValue = array();
if ($i == count($arrKey) - 1) {
$newValue[$arrKey[$i]] = $value;
} else {
$newValue[$arrKey[$i] . '.'] = $value;
}
$value = $newValue;
}
$conf = t3lib_div::array_merge_recursive_overrule($conf, $value);
} else if ($value) {
$conf[$key] = $value;
}
return $conf;
}
";i:1;i:0;}s:12:"content_size";i:489;s:13:"content_lines";i:23;s:6:"atLine";i:510;}i:39;a:7:{s:6:"header";s:47:"public static function trimCallback(&$string) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:67:"
Nimmt einen String entgegen um auf diesen ein trim() anzuwenden.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"string";i:1;s:59:"$string // Call by reference: Der String der getrimmt wird.";}}s:6:"return";a:2:{i:0;s:4:"void";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:32:" $string = trim($string);
}
";i:1;i:0;}s:12:"content_size";i:32;s:13:"content_lines";i:3;s:6:"atLine";i:540;}i:41;a:4:{s:6:"header";s:52:"public static function stripTagsCallback(&$string) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:73:"
Nimmt einen String entgegen um auf diesen ein strip_tags() anzuwenden.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"string";i:1;s:60:"$string // Call by reference: Der String der gesaubert wird.";}}s:6:"return";a:2:{i:0;s:4:"void";i:1;s:0:"";}}s:6:"atLine";i:550;}i:43;a:7:{s:6:"header";s:40:"public static function checkUtf8($str) {";s:11:"parentClass";s:24:"tx_datamintsfeuser_utils";s:4:"cDat";a:3:{s:4:"text";s:45:"
Checks if a string is utf8 encoded or not.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"string";i:1;s:4:"$str";}}s:6:"return";a:2:{i:0;s:7:"boolean";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" $len = strlen($str);
for ($i = 0; $i < $len; $i++) {
$c = ord($str[$i]);
if ($c > 128) {
if (($c > 247)) {
return FALSE;
} else if ($c > 239) {
$bytes = 4;
} else if ($c > 223) {
$bytes = 3;
} else if ($c > 191) {
$bytes = 2;
} else {
return FALSE;
}
if (($i + $bytes) > $len) {
return FALSE;
}
w
[...]
{
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/datamints_feuser/lib/class.tx_datamintsfeuser_utils.php']);
}
?>";i:1;i:1;}s:12:"content_size";i:803;s:13:"content_lines";i:43;s:6:"atLine";i:560;}}s:10:"usageCount";a:22:{s:12:"H_53a2e46ba8";a:2:{s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:32:"class tx_datamintsfeuser_utils {";}s:12:"H_b5a830a3cd";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:51:"public static function getFeUsersTca($feUsersTca) {";}s:12:"H_abeb6301d6";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:57:"public static function getStoragePageId($storagePageId) {";}s:12:"H_657c480ffe";a:5:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:6;s:5:"TOTAL";i:6;}s:14:"MD5_850248a7ec";a:3:{s:8:"fileName";s:38:"lib/class.tx_datamintsfeuser_utils.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:5;s:5:"TOTAL";i:5;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:74:"public static function getTypoLinkUrl($params, $urlParameters = array()) {";}s:12:"H_b78819b0b9";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:60:"public static function currentUserWrap($content, $stdWrap) {";}s:12:"H_559619e871";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:39:"public static function fixPath($path) {";}s:12:"H_bce587439a";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:70:"public static function htmlspecialcharsPostArray(&$arrPost, $decode) {";}s:12:"H_224e2cce6b";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:65:"public static function shiftEmptyArrayValuePostArray(&$arrPost) {";}s:12:"H_b2991a901f";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:76:"public static function generatePassword($password, $arrGenerate = array()) {";}s:12:"H_8e3c8a0cbe";a:5:{s:3:"ALL";a:3:{s:11:"objectUsage";i:2;s:5:"TOTAL";i:3;s:14:"nonObjectUsage";i:1;}s:14:"MD5_850248a7ec";a:3:{s:8:"fileName";s:38:"lib/class.tx_datamintsfeuser_utils.php";s:11:"objectUsage";i:2;s:5:"TOTAL";i:2;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:0;s:15:"_functionHeader";s:77:"public static function checkPassword($submittedPassword, $originalPassword) {";}s:12:"H_db775202fd";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:0;s:15:"_functionHeader";s:86:"public static function userAutoLogin($userId, $pageId = 0, $urlParameters = array()) {";}s:12:"H_ebc984bee3";a:5:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:14:"MD5_850248a7ec";a:3:{s:8:"fileName";s:38:"lib/class.tx_datamintsfeuser_utils.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:105:"public static function userRedirect($pageId = 0, $urlParameters = array(), $disableAccessCheck = FALSE) {";}s:12:"H_8399c6f660";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:45:"public static function escapeBrackets($url) {";}s:12:"H_aa617655f6";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:14;s:5:"TOTAL";i:14;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:14;s:5:"TOTAL";i:14;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:55:"public static function getSpecialFieldKey($fieldName) {";}s:12:"H_c7c06c8dab";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:4;s:5:"TOTAL";i:4;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:4;s:5:"TOTAL";i:4;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:56:"public static function getSpecialFieldName($fieldName) {";}s:12:"H_096962f472";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:58:"public static function convertHtmlEmailToPlain($content) {";}s:12:"H_c96fe4eeef";a:4:{s:3:"ALL";a:3:{s:11:"objectUsage";i:5;s:5:"TOTAL";i:6;s:14:"nonObjectUsage";i:1;}s:14:"MD5_8f66ccd171";a:4:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:11:"objectUsage";i:5;s:5:"TOTAL";i:6;s:14:"nonObjectUsage";i:1;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:97:"public static function getTemplateSubpart($templateFile, $templatePart, $markerArray = array()) {";}s:12:"H_eac843efc2";a:5:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:3;s:5:"TOTAL";i:3;}s:14:"MD5_850248a7ec";a:3:{s:8:"fileName";s:38:"lib/class.tx_datamintsfeuser_utils.php";s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:91:"public static function getFlexformConfigurationFromTab($flexData, $sTab, $conf = array()) {";}s:12:"H_705b41b24d";a:4:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:75:"public static function setFlexformConfigurationValue($key, $value, $conf) {";}s:12:"H_d60341968f";a:2:{s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:47:"public static function trimCallback(&$string) {";}s:12:"H_9dbeb03dc6";a:2:{s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:52:"public static function stripTagsCallback(&$string) {";}s:12:"H_8e08dc0426";a:5:{s:3:"ALL";a:2:{s:14:"nonObjectUsage";i:2;s:5:"TOTAL";i:2;}s:14:"MD5_850248a7ec";a:3:{s:8:"fileName";s:38:"lib/class.tx_datamintsfeuser_utils.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:14:"MD5_8f66ccd171";a:3:{s:8:"fileName";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:14:"nonObjectUsage";i:1;s:5:"TOTAL";i:1;}s:24:"_searchtime_milliseconds";d:1;s:15:"_functionHeader";s:40:"public static function checkUtf8($str) {";}}}s:14:"MD5_8f66ccd171";a:5:{s:8:"filename";s:36:"pi1/class.tx_datamintsfeuser_pi1.php";s:8:"filesize";i:125689;s:6:"header";a:5:{s:4:"text";s:74:"
Plugin 'Frontend User Management' for the 'datamints_feuser' extension.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}s:5:"other";a:3:{i:0;s:54:"@author Bernhard Baumgartl <[email protected]>";i:1;s:14:"@package TYPO3";i:2;s:30:"@subpackage tx_datamintsfeuser";}s:11:"other_index";a:3:{s:7:"@author";a:1:{i:0;s:46:"Bernhard Baumgartl <[email protected]>";}s:8:"@package";a:1:{i:0;s:6:"TYPO3 ";}s:11:"@subpackage";a:1:{i:0;s:19:"tx_datamintsfeuser ";}}}s:3:"DAT";a:56:{i:1;a:8:{s:6:"header";s:51:"class tx_datamintsfeuser_pi1 extends tslib_pibase {";s:5:"class";i:1;s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:5:{s:4:"text";s:74:"
Plugin 'Frontend User Management' for the 'datamints_feuser' extension.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}s:5:"other";a:3:{i:0;s:54:"@author Bernhard Baumgartl <[email protected]>";i:1;s:14:"@package TYPO3";i:2;s:30:"@subpackage tx_datamintsfeuser";}s:11:"other_index";a:3:{s:7:"@author";a:1:{i:0;s:46:"Bernhard Baumgartl <[email protected]>";}s:8:"@package";a:1:{i:0;s:6:"TYPO3 ";}s:11:"@subpackage";a:1:{i:0;s:19:"tx_datamintsfeuser ";}}}s:7:"content";a:2:{i:0;s:1833:" public $extKey = 'datamints_feuser';
public $prefixId = 'tx_datamintsfeuser_pi1';
public $scriptRelPath = 'pi1/class.tx_datamintsfeuser_pi1.php';
public $conf = array();
public $lang = array();
public $extConf = array();
public $feUsersTca = array();
public $userId = 0;
public $contentId = 0;
public $storagePageId = 0;
public $arrUsedFields = array();
public $arrUniqueFields = array();
public $arrRequiredFields = array();
public $arrHiddenParams = array();
const modeKeySend = 'send';
const modeKeyApprovalcheck = 'approvalcheck';
const modeKeyResendactivation = 'resendactivation';
const submodeKeySent = 'sent';
const submodeKeyError = 'error';
const submodeKeyFailure = 'failure';
const submodeKeySuccess = 'success';
const submodeKeyUserdelete = 'userdelete';
const showtypeKeyEdit = 'edit';
const showtypeKeyRegister = 'register';
const validationerrorKeySize = 'size';
const validationerrorKeyType = 'type';
const validationerrorKeyEqual = 'equal';
const validationerrorKeyValid = 'valid';
const validationerrorKeyDelete = 'delete';
const validationerrorKeyLength = 'length';
const validationerrorKeyUnique = 'unique';
const validationerrorKeyUpload = 'upload';
const validationerrorKeyRequired = 'required';
const submitparameterKeyHash = 'hash';
const submitparameterKeyMode = 'submit';
const submitparameterKeyPage = 'pageid';
const submitparameterKeyUser = 'userid';
const submitparameterKeySubmode = 'submitmode';
const specialfieldKeySubmit = 'submit';
const specialfieldKeyCaptcha = 'captcha';
const specialfieldKeyInfoitem = 'infoitem';
const specialfieldKeySeparator = 'separator';
const specialfieldKeyUserdelete = 'userdelete';
const specialfieldKeyResendactivation = 'resendactivation';
const specialfieldKeyPasswordconfirmation = 'passwordconfirmation';
";i:1;i:-1;}s:12:"content_size";i:1833;s:13:"content_lines";i:55;s:6:"atLine";i:100;}i:3;a:7:{s:6:"header";s:39:"public function main($content, $conf) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:32:"
The main method of the PlugIn
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"string";i:1;s:8:"$content";}i:1;a:2:{i:0;s:5:"array";i:1;s:5:"$conf";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:8:"$content";}}s:7:"content";a:2:{i:0;s:507:" $this->conf = $conf;
// Debug.
// $GLOBALS['TSFE']->set_no_cache();
// $GLOBALS['TYPO3_DB']->debugOutput = TRUE;
// PiVars und Flexform laden.
$this->pi_setPiVarDefaults();
$this->pi_initPIflexForm();
// Erst die Konfiguration und dann die Labels laden, damit die in der Flexform gesetzten Labels auch beruecksichtigt werden!
$this->determineConfiguration(
[...]
break;
default:
$content = $this->showForm();
break;
}
return $this->pi_wrapInBaseClass($content);
}
";i:1;i:1;}s:12:"content_size";i:3638;s:13:"content_lines";i:76;s:6:"atLine";i:163;}i:5;a:7:{s:6:"header";s:32:"public function doFormSubmit() {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:122:"
Bereitet die uebergebenen Daten fuer den Import in die Datenbank vor, und fuehrt diesen, wenn es keine Fehler gab, aus.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" $mode = $this->conf['showtype'];
$submode = self::submodeKeyFailure;
$params = array();
$arrUpdate = array();
// Falls ein Leerstring in einem Array-Wert an erster Stelle steht, handelt es sich um ein verstecktes Feld. Dieses muss entfernt werden.
tx_datamintsfeuser_utils::shiftEmptyArrayValuePostArray($this->piVars[$this->contentId]);
// Jedes Element in p
[...]
::callUserFunction($_funcRef, $_params, $this);
}
}
return $this->showOutputRedirect($mode, $submode, $params);
}
";i:1;i:1;}s:12:"content_size";i:8270;s:13:"content_lines";i:207;s:6:"atLine";i:245;}i:7;a:7:{s:6:"header";s:30:"public function checkValid() {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:56:"
Ueberprueft ob alle Validierungen eingehalten wurden.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:11:"$valueCheck";}}s:7:"content";a:2:{i:0;s:507:" $valueCheck = array();
// Alle ausgewaehlten Felder durchgehen.
foreach ($this->arrUsedFields as $fieldName) {
$fieldName = tx_datamintsfeuser_utils::getSpecialFieldName($fieldName);
$fieldConfig = $this->feUsersTca['columns'][$fieldName]['config'];
$value = $this->piVars[$this->contentId][$fieldName];
$validate = $this->conf['validate.'][$fieldName . '
[...]
eck[$fieldName] = self::validationerrorKeyLength;
}
}
}
break;
}
}
return $valueCheck;
}
";i:1;i:1;}s:12:"content_size";i:5314;s:13:"content_lines";i:147;s:6:"atLine";i:458;}i:9;a:7:{s:6:"header";s:31:"public function checkUnique() {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:112:"
Ueberprueft die uebergebenen Inhalte, bei bestimmten Feldern, ob diese in der Datenbank schon vorhanden sind.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:11:"$valueCheck";}}s:7:"content";a:2:{i:0;s:507:" $where = '';
$valueCheck = array();
// Beim Bearbeiten, den eigenen Datensatz nicht ueberpruefen.
if ($this->conf['showtype'] == self::showtypeKeyEdit) {
$where .= ' AND uid <> ' . $this->userId;
}
// Wenn beim Bearbeiten keine "userfolder" gesetzt ist, soll global ueberprueft werden, ansonsten nur im Storage!
if (!$this->conf['uniqueglobal'] && $this->g
[...]
w['count'] >= 1) {
$valueCheck[$fieldName] = self::validationerrorKeyUnique;
}
}
}
return $valueCheck;
}
";i:1;i:1;}s:12:"content_size";i:1002;s:13:"content_lines";i:27;s:6:"atLine";i:611;}i:11;a:7:{s:6:"header";s:33:"public function checkRequired() {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:73:"
Ueberprueft ob alle benoetigten Felder mit Inhalten uebergeben wurden.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:11:"$valueCheck";}}s:7:"content";a:2:{i:0;s:507:" $valueCheck = array();
// Geht alle benoetigten Felder durch und ermittelt fehlende.
foreach ($this->arrRequiredFields as $fieldName) {
// Ueberpruefen, ob das Feld ueberhaupt angezeigt wurde.
if (!in_array($fieldName, $this->arrUsedFields)) {
continue;
}
$fieldConfig = $this->feUsersTca['columns'][$fieldName]['config'];
$fieldName = tx_datamint
[...]
h einem Leerstring ist!
if ($fieldValue != '') {
unset($valueCheck[$fieldName]);
}
}
return $valueCheck;
}
";i:1;i:1;}s:12:"content_size";i:2215;s:13:"content_lines";i:57;s:6:"atLine";i:644;}i:13;a:7:{s:6:"header";s:38:"public function checkCaptcha($value) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:55:"
Ueberprueft ob das Captcha richtig eingegeben wurde.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"string";i:1;s:6:"$value";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" if (!t3lib_extMgm::isLoaded($this->conf['captcha.']['use'])) {
return '';
}
switch ($this->conf['captcha.']['use']) {
case 'captcha':
session_start();
$captchaString = $_SESSION['tx_captcha_string'];
if ($value != $captchaString) {
return self::validationerrorKeyValid;
}
break;
case 'sr_freecap':
require_once(t3lib_extMgm::
[...]
culatingcaptcha->correctCode($value)) {
return self::validationerrorKeyValid;
}
break;
}
return '';
}
";i:1;i:1;}s:12:"content_size";i:1334;s:13:"content_lines";i:57;s:6:"atLine";i:708;}i:15;a:7:{s:6:"header";s:75:"public function cleanPasswordField(&$arrUpdate, $fieldName, $fieldConfig) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:90:"
Falls angegebe das Passwort fuer ein Passwortfeld generieren und / oder verschluesseln.
";s:5:"param";a:3:{i:0;a:2:{i:0;s:5:"array";i:1;s:76:"$arrUpdate // Call by reference: Das Array in dem das zu saubernde Feld ist.";}i:1;a:2:{i:0;s:6:"string";i:1;s:10:"$fieldName";}i:2;a:2:{i:0;s:5:"array";i:1;s:12:"$fieldConfig";}}s:6:"return";a:2:{i:0;s:7:"boolean";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:431:" // Password generieren und verschluesseln je nach Einstellung.
$password = tx_datamintsfeuser_utils::generatePassword($this->piVars[$this->contentId][$fieldName], $this->getConfigurationByShowtype('generatepassword.'));
$arrUpdate[$fieldName] = $password['encrypted'];
// Wenn kein Password uebergeben wurde auch keins schreiben.
if (!$arrUpdate[$fieldName]) {
unset($arrUpdate[$fieldName]);
}
return TRUE;
}
";i:1;i:0;}s:12:"content_size";i:431;s:13:"content_lines";i:12;s:6:"atLine";i:774;}i:17;a:7:{s:6:"header";s:72:"public function cleanCheckField(&$arrUpdate, $fieldName, $fieldConfig) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:163:"
Saeubert Checkboxfelder, indem die uebergebenen Werte durch 1 oder 0 ausgetauscht werden.
Gilt fuer eine oder mehrere Checkboxen (nicht fuer scrollbare Listen).
";s:5:"param";a:3:{i:0;a:2:{i:0;s:5:"array";i:1;s:76:"$arrUpdate // Call by reference: Das Array in dem das zu saubernde Feld ist.";}i:1;a:2:{i:0;s:6:"string";i:1;s:10:"$fieldName";}i:2;a:2:{i:0;s:5:"array";i:1;s:12:"$fieldConfig";}}s:6:"return";a:2:{i:0;s:7:"boolean";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:565:" $checkItemsCount = count($fieldConfig['items']);
// Mehrere Checkboxen oder eine Checkbox.
if ($checkItemsCount > 1) {
$binString = '';
for ($key = 0; $key < $checkItemsCount; $key++) {
if ($this->piVars[$this->contentId][$fieldName][$key]) {
$binString .= '1';
} else {
$binString .= '0';
}
}
$arrUpdate[$fieldName] = bindec(strrev($binString));
} else {
if ($this->piVars[$this->contentId][$fieldName]) {
$arrUpdate[$fieldName] = '1';
} else {
$arrUpdate[$fieldName] = '0';
}
}
return TRUE;
}
";i:1;i:0;}s:12:"content_size";i:565;s:13:"content_lines";i:26;s:6:"atLine";i:796;}i:19;a:7:{s:6:"header";s:81:"public function cleanMultipleSelectField(&$arrUpdate, $fieldName, $fieldConfig) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:95:"
Saeubert MultipleSelectboxfelder indem auf jeden uebergebenen Wert intval() angewendet wird.
";s:5:"param";a:3:{i:0;a:2:{i:0;s:5:"array";i:1;s:76:"$arrUpdate // Call by reference: Das Array in dem das zu saubernde Feld ist.";}i:1;a:2:{i:0;s:6:"string";i:1;s:10:"$fieldName";}i:2;a:2:{i:0;s:5:"array";i:1;s:12:"$fieldConfig";}}s:6:"return";a:2:{i:0;s:7:"boolean";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" $maxItemsCount = 1;
$arrCleanedValues = array();
// Wenn nichts ausgewaehlt wurde, wird dieser Parameter auch nicht uebergeben, daher zuerst ueberpruefen, ob etwas vorhanden ist.
if (!is_array($this->piVars[$this->contentId][$fieldName])) {
return FALSE;
}
foreach ($this->piVars[$this->contentId][$fieldName] as $val) {
// Einen leeren String als Ueberga
[...]
] = intval($val);
$maxItemsCount++;
}
$arrUpdate[$fieldName] = implode(',', $arrCleanedValues);
return TRUE;
}
";i:1;i:1;}s:12:"content_size";i:751;s:13:"content_lines";i:27;s:6:"atLine";i:831;}i:21;a:7:{s:6:"header";s:80:"public function cleanGroupDatabaseField(&$arrUpdate, $fieldName, $fieldConfig) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:65:"
Saeubert Group- und MultipleCheckboxfelder (scrollbare Liste).
";s:5:"param";a:3:{i:0;a:2:{i:0;s:5:"array";i:1;s:76:"$arrUpdate // Call by reference: Das Array in dem das zu saubernde Feld ist.";}i:1;a:2:{i:0;s:6:"string";i:1;s:10:"$fieldName";}i:2;a:2:{i:0;s:5:"array";i:1;s:12:"$fieldConfig";}}s:6:"return";a:2:{i:0;s:7:"boolean";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" $maxItemsCount = 1;
$arrCleanedValues = array();
$arrAllowed = t3lib_div::trimExplode(',', $fieldConfig['allowed'], TRUE);
// Hier werden absichtlich nur die Erlaubten Tabellen benutzt, da es sonst unmengen an möglichen Optionen geben wuerde!
foreach ($arrAllowed as $table) {
if (!$GLOBALS['TCA'][$table] || !is_array($this->piVars[$this->contentId][$fieldNa
[...]
r($val, strripos($val, '_') + 1);
}
}
$arrUpdate[$fieldName] = implode(',', $arrCleanedValues);
return TRUE;
}
";i:1;i:1;}s:12:"content_size";i:1069;s:13:"content_lines";i:36;s:6:"atLine";i:867;}i:23;a:7:{s:6:"header";s:76:"public function cleanUncleanedField(&$arrUpdate, $fieldName, $fieldConfig) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:55:"
Saeubert die uebrigen Felder (Input, Textarea, ...).
";s:5:"param";a:3:{i:0;a:2:{i:0;s:5:"array";i:1;s:76:"$arrUpdate // Call by reference: Das Array in dem das zu saubernde Feld ist.";}i:1;a:2:{i:0;s:6:"string";i:1;s:10:"$fieldName";}i:2;a:2:{i:0;s:5:"array";i:1;s:12:"$fieldConfig";}}s:6:"return";a:2:{i:0;s:7:"boolean";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" // Wenn eine Selectbox die Ihren Inhalt aus einer anderen Tabelle hat angezeigt wurde, dann darf nur eine Zahl kommen!
if ($fieldConfig['type'] == 'select' && $fieldConfig['foreign_table']) {
$arrUpdate[$fieldName] = intval($this->piVars[$this->contentId][$fieldName]);
return TRUE;
}
// Ansonsten Standardsaeuberung.
$arrUpdate[$fieldName] = strip_tags($th
[...]
ren.
if ($fieldName == 'email') {
$arrUpdate[$fieldName] = strtolower($arrUpdate[$fieldName]);
}
return TRUE;
}
";i:1;i:1;}s:12:"content_size";i:608;s:13:"content_lines";i:18;s:6:"atLine";i:912;}i:25;a:7:{s:6:"header";s:72:"public function saveDeleteFiles(&$arrUpdate, $fieldName, $fieldConfig) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:80:"
The saveDeleteImage method is used to update or delete an image of an address
";s:5:"param";a:3:{i:0;a:2:{i:0;s:5:"array";i:1;s:76:"$arrUpdate // Call by reference: Das Array in dem das zu saubernde Feld ist.";}i:1;a:2:{i:0;s:6:"string";i:1;s:10:"$fieldName";}i:2;a:2:{i:0;s:5:"array";i:1;s:12:"$fieldConfig";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:6:"$error";}}s:7:"content";a:2:{i:0;s:507:" $error = '';
if (!is_array($this->piVars[$this->contentId][$fieldName])) {
return $error;
}
$arrFieldVars = $this->piVars[$this->contentId][$fieldName];
$maxSize = $fieldConfig['max_size'] * 1024;
$uploadFolder = tx_datamintsfeuser_utils::fixPath($fieldConfig['uploadfolder']);
$allowedTypes = t3lib_div::trimExplode(',', strtolower(str_replace('*', '', $
[...]
}
}
if ($error) {
break;
}
}
$arrUpdate[$fieldName] = implode(',', $arrFilenames);
return $error;
}
";i:1;i:1;}s:12:"content_size";i:4158;s:13:"content_lines";i:111;s:6:"atLine";i:939;}i:27;a:7:{s:6:"header";s:41:"public function copyFields(&$arrUpdate) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:189:"
Kopiert anhand der angegebenen Konfigurationen Inhalte in dem uebergebenen Array an eine neue oder andere Stelle.
Dabei wird auf jeden kopierten Inhalt die stdWrap Funktionen angewendet.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:5:"array";i:1;s:73:"$arrUpdate // Call by reference: Das Array dessen Inhalte kopiert werden.";}}s:6:"return";a:2:{i:0;s:7:"boolean";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" if (!is_array($this->conf['copyfields.'])) {
return FALSE;
}
// Kopiert den Inhalt eines Feldes in ein anderes Feld.
$arrCopiedFields = array();
foreach ($this->conf['copyfields.'] as $fieldToCopy => $arrCopyToFields) {
$fieldToCopy = rtrim($fieldToCopy, '.');
// Wenn das Feld nich existiert, ueberspringen.
if (!array_key_exists($fieldToCopy, $this
[...]
_utils::currentUserWrap($arrUpdate[$fieldToCopy], $arrCopyToFields[$copyToField . '.']);
}
}
}
return TRUE;
}
";i:1;i:1;}s:12:"content_size";i:1338;s:13:"content_lines";i:45;s:6:"atLine";i:1058;}i:29;a:7:{s:6:"header";s:41:"public function doUserEdit(&$arrUpdate) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:71:"
Aktualisiert einen vorhandenen User, anhand des uebergebenen Arrays.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:5:"array";i:1;s:74:"$arrUpdate // Call by reference: Das Array mit den bearbeiteten Userdaten.";}}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:8:"$arrMode";}}s:7:"content";a:2:{i:0;s:507:" $arrMode = array();
if ($arrUpdate['deleted']) {
$this->deleteUser();
// Ausgabe vorbereiten.
$arrMode['mode'] = $this->conf['showtype'];
$arrMode['submode'] = self::submodeKeyUserdelete;
$arrMode['params'] = array('refresh' => t3lib_div::getIndpEnv('TYPO3_SITE_URL'));
return $arrMode;
}
// ToDo: MM-Relation, MM-Relationen setzen und die Anzah
[...]
' => t3lib_div::locationHeaderUrl(tx_datamintsfeuser_utils::getTypoLinkUrl($GLOBALS['TSFE']->id)));
return $arrMode;
}
";i:1;i:1;}s:12:"content_size";i:1865;s:13:"content_lines";i:41;s:6:"atLine";i:1110;}i:31;a:7:{s:6:"header";s:30:"public function deleteUser() {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:34:"
Loescht einen vorhandenen User.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:8:"$arrMode";}}s:7:"content";a:2:{i:0;s:360:" if ($this->getConfigurationByShowtype('userdelete')) {
// Den User endgueltig loeschen.
$GLOBALS['TYPO3_DB']->exec_DELETEquery('fe_users', 'uid = ' . $this->userId);
} else {
// Den User als geloescht markieren.
$GLOBALS['TYPO3_DB']->exec_UPDATEquery('fe_users', 'uid = ' . $this->userId, array('tstamp' => time(), 'deleted' => '1'));
}
}
";i:1;i:0;}s:12:"content_size";i:360;s:13:"content_lines";i:9;s:6:"atLine";i:1157;}i:33;a:7:{s:6:"header";s:45:"public function doUserRegister(&$arrUpdate) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:55:"
Erstellt einen User, anhand des uebergebenen Arrays.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:5:"array";i:1;s:67:"$arrUpdate // Call by reference: Das Array mit den neuen Userdaten.";}}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:8:"$arrMode";}}s:7:"content";a:2:{i:0;s:507:" $arrMode = array();
// Standard-Konfigurationen anwenden.
$arrUpdate['pid'] = $this->storagePageId;
$arrUpdate['crdate'] = $arrUpdate['tstamp'];
$arrUpdate['usergroup'] = ($arrUpdate['usergroup']) ? $arrUpdate['usergroup'] : $this->getConfigurationByShowtype('usergroup');
// Genehmigungstypen aufsteigend sortiert ermitteln. Das ist noetig um das Level dem ric
[...]
;
$arrMode['params'] = array('autologin' => $this->getConfigurationByShowtype('autologin'));
}
return $arrMode;
}
";i:1;i:1;}s:12:"content_size";i:2744;s:13:"content_lines";i:60;s:6:"atLine";i:1173;}i:35;a:7:{s:6:"header";s:49:"public function getRelationInserts(&$arrUpdate) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:65:"
Ermittelt die neuen Relationen anhand des uebergebenen Arrays.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:5:"array";i:1;s:96:"$arrUpdate // Call by reference: Das Array in dem die Anzahl der Relationen aktualisiert werden.";}}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:11:"$arrInserts";}}s:7:"content";a:2:{i:0;s:507:" $arrInserts = array();
foreach (array_keys($arrUpdate) as $fieldName) {
if (!is_array($this->feUsersTca['columns'][$fieldName])) {
continue;
}
$fieldConfig = $this->feUsersTca['columns'][$fieldName]['config'];
if (!$fieldConfig['MM'] || !($fieldConfig['type'] == 'select' || ($fieldConfig['type'] == 'group' && $fieldConfig['internal_type'] == 'db')))
[...]
ion = strripos($relation, '_')) ? substr($relation, $dividerPosition + 1) : $relation);
}
}
return $arrInserts;
}
";i:1;i:1;}s:12:"content_size";i:795;s:13:"content_lines";i:27;s:6:"atLine";i:1240;}i:37;a:7:{s:6:"header";s:71:"public function insertRelationInserts($userId, $arrInserts = array()) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:79:"
Ersetzt die aktuellen Relationen mit den neuen hier uebergebenen Relationen.
";s:5:"param";a:2:{i:0;a:2:{i:0;s:5:"array";i:1;s:7:"$userId";}i:1;a:2:{i:0;s:5:"array";i:1;s:11:"$arrInserts";}}s:6:"return";a:2:{i:0;s:4:"void";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:582:" foreach ($arrInserts as $foreignTable => $arrRelations) {
$rows = array();
$sorting = 1;
foreach ($arrRelations as $relation) {
if (intval($relation) <= 0) {
continue;
}
$rows[] = array(
'sorting' => $sorting,
'uid_local' => intval($userId),
'uid_foreign' => intval($relation)
);
$sorting++;
}
$GLOBALS['TYPO3_DB']->exec_DELETEquery($foreignTable, 'uid_local = ' . intval($userId));
if (count($rows) > 0) {
$GLOBALS['TYPO3_DB']->exec_INSERTmultipleRows($foreignTable, array_keys($rows[0]), $rows);
}
}
}
";i:1;i:0;}s:12:"content_size";i:582;s:13:"content_lines";i:27;s:6:"atLine";i:1275;}i:39;a:7:{s:6:"header";s:77:"public function showOutputRedirect($mode, $submode = '', $params = array()) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:174:"
Erledigt allen Output der nichts mit dem eigendlichen Formular zu tun hat.
Fuer besondere Faelle kann hier eine Ausnahme, oder zusaetzliche Konfigurationen gesetzt werden.
";s:5:"param";a:3:{i:0;a:2:{i:0;s:6:"string";i:1;s:5:"$mode";}i:1;a:2:{i:0;s:6:"string";i:1;s:8:"$submode";}i:2;a:2:{i:0;s:5:"array";i:1;s:7:"$params";}}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:6:"$label";}}s:7:"content";a:2:{i:0;s:507:" $redirect = TRUE;
$autologin = FALSE;
$labelKey = $mode;
$redirectKey = $mode;
if ($submode) {
$labelKey .= '_' . $submode;
// Wenn für den Submode eine eigene Weiterleitungsseite definiert ist, diese benutzen!
if ($this->conf['redirect.'][$redirectKey . '_' . $submode]) {
$redirectKey .= '_' . $submode;
}
}
// Label ermitteln
$label =
[...]
Key], $this->getHiddenParamsArray());
}
return '<div class="' . $mode . ' ' . $submode . '">' . $label . '</div>';
}
";i:1;i:1;}s:12:"content_size";i:2198;s:13:"content_lines";i:74;s:6:"atLine";i:1312;}i:41;a:7:{s:6:"header";s:49:"public function sendActivationMail($userId = 0) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:56:"
Sendet die Aktivierungsmail an den uebergebenen User.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:7:"integer";i:1;s:7:"$userId";}}s:6:"return";a:2:{i:0;s:4:"void";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" $userId = intval($userId);
if (!$userId) {
$userId = $this->userId;
}
// Neuen Timestamp setzten, damit jede Aktivierungsmail einen anderen Hash hat.
$GLOBALS['TYPO3_DB']->exec_UPDATEquery('fe_users', 'uid = ' . $userId, array('tstamp' => time()));
// Userdaten ermitteln.
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('uid, tstamp, tx_datamintsfeuser_app
[...]
arkers);
// Cookie fuer das erneute zusenden des Aktivierungslinks setzten.
$this->setNotActivatedCookie($userId);
}
";i:1;i:1;}s:12:"content_size";i:2574;s:13:"content_lines";i:41;s:6:"atLine";i:1393;}i:43;a:7:{s:6:"header";s:35:"public function doApprovalCheck() {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:89:"
Ueberprueft ob die Linkbestaetigung gueltig ist und aktiviert gegebenenfalls den User.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"string";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" // Userdaten ermitteln.
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('uid, tstamp, tx_datamintsfeuser_approval_level', 'fe_users', 'uid = ' . $this->userId . ' AND pid = ' . $this->storagePageId, '', '', '1');
$row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
// Genehmigungstyp ermitteln um die richtige E-Mail zu senden, bzw. die richtige Ausgabe zu ermitteln.
[...]
bmode = $submodePrefix . self::submodeKeyUserdelete;
}
return $this->showOutputRedirect($mode, $submode, $params);
}
";i:1;i:1;}s:12:"content_size";i:3982;s:13:"content_lines";i:79;s:6:"atLine";i:1440;}i:45;a:7:{s:6:"header";s:36:"public function getApprovalTypes() {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:103:"
Ermittelt alle Genehmigungstypen.
Wird benoetigt um das Level dem richtigen Typ zuordnen zu koennen.
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:311:" // Beispiel: approvalcheck = ,doubleoptin,adminapproval => Beim Exploden kommt dann ein leeres Arrayelement heraus, das nach dem entfernen einen leeren Platz uebrig lassen wuerde.
return array_unique(array_values(t3lib_div::trimExplode(',', $this->getConfigurationByShowtype('approvalcheck'), TRUE)));
}
";i:1;i:0;}s:12:"content_size";i:311;s:13:"content_lines";i:4;s:6:"atLine";i:1526;}i:47;a:7:{s:6:"header";s:48:"public function setNotActivatedCookie($userId) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:90:"
Setzt einen Cookie fuer den neu angelegten Account, falls dieser aktiviert werden muss.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:7:"integer";i:1;s:7:"$userId";}}s:6:"return";a:2:{i:0;s:4:"void";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:212:" $arrNotActivated = $this->getNotActivatedUserArray();
$arrNotActivated[] = intval($userId);
setcookie($this->prefixId . '[not_activated]', implode(',', $arrNotActivated), time() + 60 * 60 * 24 * 30);
}
";i:1;i:0;}s:12:"content_size";i:212;s:13:"content_lines";i:6;s:6:"atLine";i:1537;}i:49;a:7:{s:6:"header";s:70:"public function getNotActivatedUserArray($arrNotActivated = array()) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:55:"
Ermittelt alle nicht aktivierten Accounts des Users.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:5:"array";i:1;s:16:"$arrNotActivated";}}s:6:"return";a:2:{i:0;s:5:"array";i:1;s:23:"$arrNotActivatedCleaned";}}s:7:"content";a:2:{i:0;s:507:" $arrNotActivatedCleaned = array();
// Nicht aktivierte User ueber den Cookie ermitteln, und vor Missbrauch schuetzen.
if (!$arrNotActivated) {
$arrNotActivated = array_unique(array_map('intval', t3lib_div::trimExplode(',', $_COOKIE[$this->prefixId]['not_activated'], TRUE)));
}
// Wenn nach dem reinigen noch User uebrig bleiben.
if (count($arrNotActivated)
[...]
DB']->sql_fetch_assoc($res)) {
$arrNotActivatedCleaned[] = $row['uid'];
}
}
return $arrNotActivatedCleaned;
}
";i:1;i:1;}s:12:"content_size";i:796;s:13:"content_lines";i:20;s:6:"atLine";i:1550;}i:51;a:7:{s:6:"header";s:121:"public function sendMail($userId, $templatePart, $adminMail, $config, $extraMarkers = array(), $extraSuparts = array()) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:100:"
Sendet die E-Mails mit dem uebergebenen Template und falls angegeben, auch mit den extra Markern.
";s:5:"param";a:6:{i:0;a:2:{i:0;s:7:"integer";i:1;s:7:"$userId";}i:1;a:2:{i:0;s:6:"string";i:1;s:13:"$templatePart";}i:2;a:2:{i:0;s:7:"boolean";i:1;s:10:"$adminMail";}i:3;a:2:{i:0;s:5:"array";i:1;s:7:"$config";}i:4;a:2:{i:0;s:5:"array";i:1;s:13:"$extraMarkers";}i:5;a:2:{i:0;s:5:"array";i:1;s:13:"$extraSuparts";}}s:6:"return";a:2:{i:0;s:4:"void";i:1;s:0:"";}}s:7:"content";a:2:{i:0;s:507:" // Userdaten ermitteln.
if ($this->userId) {
$row = $this->getValuesForMail();
} else {
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', 'fe_users', 'uid = ' . intval($userId), '', '', '1');
$row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
}
$arrSpecialMarkers = array(
'siteurl' => t3lib_div::getIndpEnv('TYPO3_SITE_URL'),
'requesturl' => t3li
[...]
g['mailtype'] == 'html') {
$mail->setHTML($mail->encodeMsg($bodyHtml));
}
$mail->send($toEmail);
}
}
}
";i:1;i:1;}s:12:"content_size";i:3911;s:13:"content_lines";i:124;s:6:"atLine";i:1582;}i:53;a:7:{s:6:"header";s:52:"public function isAdminApprovalType($approvalType) {";s:11:"parentClass";s:22:"tx_datamintsfeuser_pi1";s:4:"cDat";a:3:{s:4:"text";s:177:"