This repository has been archived by the owner on Nov 19, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_php_api.dat
3681 lines (3002 loc) · 308 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:11:"Meta Feedit";s:5:"descr";s:48:"The Meta Feedit is a Front End editing framework";s:7:"options";a:2:{s:10:"usageCount";s:1:"1";s:19:"includeCodeAbstract";s:1:"1";}}s:5:"files";a:14:{s:14:"MD5_86fd4f8983";a:5:{s:8:"filename";s:23:"class.tx_metafeedit.php";s:8:"filesize";i:132766;s:6:"header";a:5:{s:4:"text";s:207:"
This is a API for crating and editing records in the frontend.
The API is build on top of fe_adminLib.
See documentation or extensions 'news_feedit' and 'joboffers_feedit' for examples how to use this API
";s:5:"param";a:0:{}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}s:5:"other";a:2:{i:0;s:48:"@author Morten Tranberg Hansen <mth@daimi.au.dk>";i:1;s:50:"@author Christophe BALISKY <cbalisky@metaphore.fr>";}s:11:"other_index";a:1:{s:7:"@author";a:2:{i:0;s:40:"Morten Tranberg Hansen <mth@daimi.au.dk>";i:1;s:42:"Christophe BALISKY <cbalisky@metaphore.fr>";}}}s:3:"DAT";a:79:{i:1;a:7:{s:6:"header";s:43:"class tx_metafeedit extends tslib_pibase {";s:5:"class";i:1;s:11:"parentClass";s:13:"tx_metafeedit";s:7:"content";a:2:{i:0;s:1868:" // Private fields
var $prefixId = 'tx_metafeedit'; // Same as class name
var $scriptRelPath = 'class.tx_metafeedit.php'; // Path to this script relative to the extension dir.
var $extKey = 'meta_feedit'; // The extension key.
var $conf;
var $cObj; // contains an initialized cObj, so we can use the cObj functions whenever we want to.
var $templateObj; // contains an initialized templateObj, so we can use the template functions whenever we want to.(ex with dynamic tabs)
var $caller; // the caller
var $table; // the table
var $TCA; // contains the complete TCA of the $table
var $cmd; // this is 'hopefully' the same value as fe_adminLib's cmd.
var $id_field = ''; // the field from a record witch will identify the record.
var $additionalJS_end = array(); // JS to be added after the end of the content.
# var $LANG; // language object, used to translate 'complicated' label strings to the single label.
// Fields for the RTE API
var $strEntryField;
var $RTEObj;
var $docLarge = 0;
var $RTEcounter = 0;
var $FCounter=0;
var $formName;
var $additionalJS_initial = '';// Initial JavaScript to be printed before the form (should be in head, but cannot due to IE6 timing bug)
var $additionalJS_pre = array();// Additional JavaScript to be printed before the form (works in Mozilla/Firefox when included in head, but not in IE6)
var $additionalJS_post = array();// Additional JavaScript to be printed after the form
var $additionalJS_submit = array();// Additional JavaScript to be executed on submit
var $PA = array(
'itemFormElName' => '',
'itemFormElValue' => '',
);
var $specConf = array();
var $metafeeditlib;
var $thisConfig = array();
var $RTEtypeVal = 'text';
var $thePidValue;
var $performanceaudit; // performance audit flag
var $_LOCAL_LANG = array(); // Language override
";i:1;i:-1;}s:12:"content_size";i:1868;s:13:"content_lines";i:40;s:6:"atLine";i:55;}i:3;a:7:{s:6:"header";s:38:"function initialize(&$caller,&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:30:"
[Put your description here]
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:12:"$caller: ...";}i:1;a:2:{i:0;s:6:"[type]";i:1;s:10:"$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $conf['prefixId']= 'tx_metafeedit';
$conf['$additionalJS_post'] = array();
$conf['$additionalJS_end'] = array();
/**** SET PRIVATE VARS ****/
$this->metafeeditlib=$caller->metafeeditlib;
$this->performanceaudit=$caller->performanceaudit;
// Cache ??
if ($this->performanceaudit) t3lib_div::devLog("class.tx_metafeedit cache Mode : ".$conf['ca
[...]
isLoaded('rlmp_dateselectlib')) tx_rlmpdateselectlib::includeLib();
$this->conf=&$conf; // to be removed !!! CBY
}
";i:1;i:1;}s:12:"content_size";i:7035;s:13:"content_lines";i:140;s:6:"atLine";i:103;}i:5;a:7:{s:6:"header";s:32:"function init(&$caller,&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:13:"$$caller: ...";}i:1;a:2:{i:0;s:6:"[type]";i:1;s:10:"$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $this->initialize($caller,$conf);
if ($this->performanceaudit) t3lib_div::devLog("Init class.tx_metafeedit done :".$this->metafeeditlib->displaytime(), $this->extKey );
// command specific initialisation
$feAConf=$this->initCmd($conf);
$this->conf=&$conf; // to be removed !!! CBY
if ($this->performanceaudit) t3lib_div::devLog("class.tx
[...]
$content = $this->getJSBefore($feAConf) . $content;
// $content .= $this->getJSAfter();
return $content;
}
";i:1;i:1;}s:12:"content_size";i:1450;s:13:"content_lines";i:33;s:6:"atLine";i:251;}i:7;a:7:{s:6:"header";s:37:"function initFieldsCmd(&$conf,$cmd) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}i:1;a:2:{i:0;s:6:"[type]";i:1;s:9:"$cmd: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $table=$conf['table'];
/**** DO ADDITIONAL REQUIRED STUFF FOR THE FIELDS ****/
if (!$conf[$cmd.'.']['show_fields']) $conf[$cmd.'.']['show_fields']=$conf['TCAN'][$table]["interface"]["showRecordFieldList"];
$fieldArray = explode(',',$conf[$cmd.'.']['show_fields']);
$farr=array();
$fieldstoberemoved=array();
foreach((array)$fieldArray as
[...]
l be parsed as a file.
}
}
}
$conf[$cmd.'.']['show_fields']=implode(',',$farr);
}
";i:1;i:1;}s:12:"content_size";i:2726;s:13:"content_lines";i:44;s:6:"atLine";i:292;}i:9;a:7:{s:6:"header";s:26:"function initCmd(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:386:" $cmd=$conf['inputvar.']['cmd'];
$this->initFieldsCmd($conf,'create');
$this->initFieldsCmd($conf,'edit');
$this->initFieldsCmd($conf,'list');
$this->metafeeditlib->getFieldList($conf);
/**** CHECK IF LOGIN IS REQUIRED ****/
//CBY: if($conf['requireLogin'] && !$GLOBALS['TSFE']->loginUser) return $this->metafeeditlib->getLL("login_required_message",$conf);
";i:1;i:0;}s:12:"content_size";i:386;s:13:"content_lines";i:10;s:6:"atLine";i:343;}i:11;a:7:{s:6:"header";s:39:"function mergeExtendingTCAs($ext_keys){";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:994:"
* FE ADMIN LIB ****/
/*$feAConf=array();
$feAConf = &$conf;
$oldCmd=$conf['cmd'];
$conf['cmd']=$cmd;
$conf["templateContent"]= $this->getDefaultTemplate($conf); // gets the default template
//$conf['cmd']=$oldCmd;
// <CBY : generate default template in browser
if ($conf['generateTemplate']){
echo $conf["templateContent"];
die();
}
if ($conf['fetemplate']&&$conf['useTemplate']) {
$conf["templateContent"]=$conf['fetemplate'];
}
// CBY>
$conf["templateContentOptions"]=$conf['templateContent'];
//$feAConf["TCA"]=$this->TCA;
//$feAConf["LOCAL_LANG"]=$this->LOCAL_LANG;
$conf["templateContent"]=$this->metafeeditlib->replaceOptions($conf["templateContent"],$conf,$cmd,$this->table,'');
return $conf;
}
/* mergeExtendingTCAs($ext_keys)
In case you wrote an extension, that extends the table "$table", then
the TCA information for the additional fields will be merged with the "$table" TCA.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:5:"array";i:1;s:38:"Extension TCA's that should be merged.";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:145:" global $_EXTKEY, $TCA;
//Merge all ext_keys
if (is_array($ext_keys)) {
for($i = 0; $i < sizeof($ext_keys); $i++)";i:1;i:0;}s:12:"content_size";i:145;s:13:"content_lines";i:3;s:6:"atLine";i:388;}i:13;a:6:{s:6:"header";s:32:"function getDefaultConfArray() {";s:11:"parentClass";s:13:"tx_metafeedit";s:7:"content";a:2:{i:0;s:507:" return array(
'userFunc' => 'tx_metafeedit_user_feAdmin->init',
'includeLibs' => 'typo3conf/ext/meta_feedit/fe_adminLib.php',
//'includeLibs' => 'media/scripts/fe_adminLib.php',
'userFunc_updateArray' => 'tx_metafeedit_lib->updateArray',
'evalFunc' => 'tx_metafeedit_lib->processDataArray',
'create' => 1,
'create.' => array(
//'preview' =>
[...]
* TEMPLATE FUNCTIONS
**********************************************************************************************/
";i:1;i:1;}s:12:"content_size";i:1373;s:13:"content_lines";i:49;s:6:"atLine";i:404;}i:15;a:8:{s:6:"header";s:37:"function getDefaultTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:11:"sectionText";a:1:{i:0;s:18:"TEMPLATE FUNCTIONS";}s:4:"cDat";a:3:{s:4:"text";s:107:"
Gets a default template made from the TCA.
The template there is returned depends on what $this->cmd is.
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $callerMethods = get_class_methods(get_class($this->caller));
$template = array_search('getrequiredtemplate',$callerMethods) || array_search('getRequiredTemplate',$callerMethods)?
$this->caller->getRequiredTemplate($conf) : $this->getRequiredTemplate($conf);
$template .= array_search('getemailtemplate',$callerMethods) || array_search('getEmailTemplate',$c
[...]
nputvar.']['cmd'],'No Template');
$template = '';
}
}
# debug(array($template));
return $template;
}
";i:1;i:1;}s:12:"content_size";i:3300;s:13:"content_lines";i:42;s:6:"atLine";i:461;}i:17;a:7:{s:6:"header";s:36:"function makeHTMLForm($cmd,&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:82:"
Makes the form content from the TCA according to the configuration for the $cmd
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"string";i:1;s:38:"The cmd. Should be 'edit' or 'create'.";}i:1;a:2:{i:0;s:6:"[type]";i:1;s:10:"$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" //$fields = array_intersect( array_unique(t3lib_div::trimExplode(",",$conf[$cmd.'.']['show_fields'],1)) , array_unique(t3lib_div::trimExplode(",",$conf[$cmd.'.']['fields'],1)));
//$reqFields = array_intersect( array_unique(t3lib_div::trimExplode(",",$conf[$cmd.'.']["required"],1)) , array_unique(t3lib_div::trimExplode(",",$conf[$cmd.'.']['show_fields'],1)));
$
[...]
m() :: No form generated! (Probably no fields defined in typoscript option show_fields)';
}
return $content;
}
";i:1;i:1;}s:12:"content_size";i:4487;s:13:"content_lines";i:83;s:6:"atLine";i:511;}i:19;a:7:{s:6:"header";s:27:"function helpIcon($field) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:36:"
Returns a help icon for the field
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"string";i:1;s:34:"The field to get the help icon for";}i:1;a:2:{i:0;s:7:"boolean";i:1;s:58:"The help icon with link to javascript popup, with help in.";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" // debug($conf);
if(!is_array($GLOBALS['TCA_DESCR'][$this->table]['refs'])) return '';
foreach($GLOBALS['TCA_DESCR'][$this->table]['refs'] as $ref) {
$fieldDescription = $GLOBALS['TSFE']->sL('LLL:'.$ref.':'.$field.'.description') .' ';
}
if(empty($fieldDescription)) return '';
else {
// $aOnClick = 'confirm(\''.$fieldDescription.
[...]
rder="0" class="absmiddle"'.($GLOBALS['CLIENT']['FORMSTYLE']?' style="cursor:help;"':'').' alt="" />'.
'</a>';
}
}
";i:1;i:1;}s:12:"content_size";i:1399;s:13:"content_lines";i:24;s:6:"atLine";i:602;}i:21;a:7:{s:6:"header";s:57:"function makeHTMLPreview($cmd,&$conf, $withHTML = true) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:82:"
Makes a preview of the form content according to the configuration for the $cmd
";s:5:"param";a:3:{i:0;a:2:{i:0;s:6:"string";i:1;s:47:"The cmd. Should be 'edit' or 'create' or 'all'.";}i:1;a:2:{i:0;s:7:"boolean";i:1;s:44:"Should the output be wrapped in html or not.";}i:2;a:2:{i:0;s:6:"[type]";i:1;s:14:"$withHTML: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $fields = (string)$cmd=='all' ? array_unique(t3lib_div::trimExplode(",",($conf['create.']['show_fields'] ? $conf['create.']['show_fields'].($conf['edit.']['show_fields']?','.$conf['edit.']['show_fields']:'') : $conf['edit.']['show_fields']))) : array_unique(t3lib_div::trimExplode(",",$conf[$cmd.'.']['show_fields']));
$result = array();
$out_array = array();
[...]
s->templateObj->getDynTabMenu($parts, 'TCEforms:'.$table.':'.$row[$conf['uidField']]),$conf);
}
return $content;
}
";i:1;i:1;}s:12:"content_size";i:3650;s:13:"content_lines";i:79;s:6:"atLine";i:635;}i:23;a:7:{s:6:"header";s:39:"function makeTEXTPreview($cmd,&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:112:"
A dummy method for making a NON HTML preview of the form content according to the configurations for the $cmd
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"string";i:1;s:38:"The cmd. Should be 'edit' or 'create'.";}i:1;a:2:{i:0;s:6:"[type]";i:1;s:10:"$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:60:" return $this->makeHTMLPreview($cmd,$conf,false);
}
";i:1;i:0;}s:12:"content_size";i:60;s:13:"content_lines";i:3;s:6:"atLine";i:722;}i:25;a:7:{s:6:"header";s:43:"function addCallersPiVars($result,&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:5:{s:4:"text";s:64:"
Add callers piVars as hidden input fields to the result array
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"string";i:1;s:43:"The string to add piVars as input fields to";}i:1;a:2:{i:0;s:6:"[type]";i:1;s:10:"$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}s:5:"other";a:1:{i:0;s:64:"@result string The result string with added piVars input fields";}s:11:"other_index";a:1:{s:7:"@result";a:1:{i:0;s:55:"string The result string with added piVars input fields";}}}s:7:"content";a:2:{i:0;s:522:" $keep_piVars = t3lib_div::trimExplode(',',$conf['keep_piVars']);
foreach($keep_piVars as $piVar) {
if($piVar && is_array($this->piVars[$piVar])) {
foreach($this->piVars[$piVar] as $key=>$val) {
$result.='<input type="hidden" name="'.$this->prefixId.'['.$piVar.']['.$key.']" value="'.$val.'" />';
}
}
if (!empty($piVar)) {
$result.= '<input type="hidden" name="'.$this->caller->prefixId.'['.$piVar.']" value="'.$this->caller->piVars[$piVar].'" />';
}
}
return $result.$res;
}
";i:1;i:0;}s:12:"content_size";i:522;s:13:"content_lines";i:16;s:6:"atLine";i:734;}i:27;a:7:{s:6:"header";s:57:"function getPreviewFieldCode($cmd,&$conf,$fN,$withHTML) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:91:"
Gets the PREVIEW fieldcode for field ($fN) of the form. This depends on the fields type.
";s:5:"param";a:4:{i:0;a:2:{i:0;s:6:"string";i:1;s:35:"The field to get the fieldcode for.";}i:1;a:2:{i:0;s:7:"boolean";i:1;s:53:"Should the output be with html (input fields) or not.";}i:2;a:2:{i:0;s:6:"[type]";i:1;s:14:"$withHTML: ...";}i:3;a:2:{i:0;s:6:"[type]";i:1;s:14:"$withHTML: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $fN=trim($fN);
$masterTable=$cmd=='blog'?'tx_metafeedit_comments':$conf['table'];
$res=$this->metafeeditlib->getForeignTableFromField($fN,$conf);
$fN=str_replace('.','_',$fN);
$table=$res['table'];
$fNiD=$res['fNiD'];
$EVAL_ERROR_FIELD= $withHTML?'<div '.$this->caller->pi_classParam('form-error-field').'>###EVAL_ERROR_FIELD_'.$fN.'###</div>':'';
[...]
'.$fieldName.'" />###FIELD_'.$fN.'###'.$EVAL_ERROR_FIELD:'###FIELD_'.$fN.'###'.$EVAL_ERROR_FIELD;
break;
}
}
";i:1;i:1;}s:12:"content_size";i:8340;s:13:"content_lines";i:162;s:6:"atLine";i:760;}i:29;a:7:{s:6:"header";s:51:"function getFormFieldCode($cmd,&$conf,$fN,$bgrid) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:83:"
Gets the fieldcode for field ($fN) of the form. This depends on the fields type.
";s:5:"param";a:4:{i:0;a:2:{i:0;s:6:"string";i:1;s:38:"The cmd. Should be 'edit' or 'create'.";}i:1;a:2:{i:0;s:6:"string";i:1;s:15:"The conf array.";}i:2;a:2:{i:0;s:6:"string";i:1;s:35:"The field to get the fieldcode for.";}i:3;a:2:{i:0;s:6:"string";i:1;s:37:"boolean, true if we are in grid mode.";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:"
// CBY: We handle here Read Only Fields !!!
$readOnlyArr = t3lib_div::trimExplode(',',$conf[$cmd.'.']['readonlyFields']);
if (($cmd=="edit" || $cmd=='create') && in_array($fN, $readOnlyArr)) {
return $this->getPreviewFieldCode($cmd,$conf,$fN,1);
}
// blog hack !! to be changed
$masterTable=$cmd=='blog'?'tx_metafeedit_comments':$conf['table'];
$gri
[...]
Unknown type (".$type.") with field ".$fN);
return '<input type="text"'.$defaultParams.' />';
break;
}
}
";i:1;i:1;}s:12:"content_size";i:17330;s:13:"content_lines";i:261;s:6:"atLine";i:932;}i:31;a:7:{s:6:"header";s:36:"function getEditMenuFields(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $fields=$conf['list.']['show_fields']?$conf['list.']['show_fields']:$this->id_field;
$fieldArray=array_unique(t3lib_div::trimExplode(",",$fields));
foreach($fieldArray as $FN) {
$params=t3lib_div::trimExplode(';',$FN);
if ($params[0]!='--div--') {
$Lib=$this->metafeeditlib->getLLFromLabel($conf['TCAN'][$conf['table']]['columns'][trim($FN)]['label'],$conf);
[...]
t.=$conf['list.']['sortFields']?'<th><a href="'.$href.'">'.$Lib.'</a></th>':'<th>'.$Lib.'</th>';
}
}
return $ret;
}
";i:1;i:1;}s:12:"content_size";i:628;s:13:"content_lines";i:14;s:6:"atLine";i:1200;}i:33;a:7:{s:6:"header";s:40:"function getEditMenuDataFields(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $fields=$conf['list.']['show_fields']?$conf['list.']['show_fields']:$this->id_field;
$fieldArray=array_unique(t3lib_div::trimExplode(",",$fields));
$cols=$conf['list.']['nbCols'];
foreach($fieldArray as $FN) {
$params=explode(';',$FN);
if ($params[0]!='--div--') {
$FCode=$this->getPreviewFieldCode('edit',$conf,$FN,0);
$FN=str_replace('.','_',$FN);
if ($col
[...]
ist_field').' '.$this->caller->pi_getClassName('list_field_'.$FN).'">'.$FCode.'</div></td>';
}
}
}
return $ret;
}
";i:1;i:1;}s:12:"content_size";i:737;s:13:"content_lines";i:18;s:6:"atLine";i:1221;}i:35;a:7:{s:6:"header";s:37:"function getGridDataFields (&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:573:" $fields=$conf['grid.']['show_fields']?$conf['grid.']['show_fields']:$this->id_field;
$fieldArray=array_unique(t3lib_div::trimExplode(",",$fields));
//$cols=$conf['list.']['nbCols'];
foreach($fieldArray as $FN) {
$params=explode(';',$FN);
if ($params[0]!='--div--') {
$FCode=(!$conf['disableEdit'])?$this->getFormFieldCode('edit',$conf,$FN,1):$this->getPreviewFieldCode('edit',$conf,$FN,1);
$ret.='<div class="'.$this->caller->pi_getClassName('grid_field').' '.$this->caller->pi_getClassName('grid_field_'.$FN).'">'.$FCode.'</div>';
}
}
return $ret;
}
";i:1;i:0;}s:12:"content_size";i:573;s:13:"content_lines";i:13;s:6:"atLine";i:1246;}i:37;a:7:{s:6:"header";s:36:"function getBlogDataFields(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $fields=$conf['blog.']['show_fields']?$conf['blog.']['show_fields']:'firstname,surname,email,homepage,place,crdate,entry,entrycomment';
$fieldArray=array_unique(t3lib_div::trimExplode(",",$fields));
//$cols=$conf['blog.']['nbCols'];
$ret='<tr><td>';
foreach($fieldArray as $FN) {
$params=explode(';',$FN);
$FCode=$this->getPreviewFieldCode('blog',$conf,$FN,0);
$
[...]
$this->caller->pi_getClassName('blog_label').'">'.$Lib.'</div>'.$FCode.'</div>';
}
$ret.='</td></tr>';
return $ret;
}
";i:1;i:1;}s:12:"content_size";i:760;s:13:"content_lines";i:14;s:6:"atLine";i:1266;}i:39;a:7:{s:6:"header";s:36:"function getBlogFormFields(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $fields=$conf['blog.']['show_fields']?$conf['blog.']['show_fields']:'firstname,surname,email,homepage,place,entry,entrycomment';
$fieldArray=array_unique(t3lib_div::trimExplode(",",$fields));
$ret="<table><tr><td>";
//$cols=$conf['blog.']['nbCols'];
foreach($fieldArray as $FN) {
$params=explode(';',$FN);
$FCode=$this->getFormFieldCode('blog',$conf,$FN,0);
$Lib
[...]
aller->pi_getClassName('blog_label').'">'.$Lib.'</div>'.$FCode.'</div>';
}
$ret.="</td></tr></table>";
return $ret;
}
";i:1;i:1;}s:12:"content_size";i:765;s:13:"content_lines";i:14;s:6:"atLine";i:1287;}i:41;a:7:{s:6:"header";s:38:"function getEditMenuTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:150:" //$this->getGroupByFields($conf);
$ret=$this->getEditMenuItemTemplate($conf);
$ret.=$this->getEditMenuNoItemTemplate($conf);
return ($ret);
}
";i:1;i:0;}s:12:"content_size";i:150;s:13:"content_lines";i:6;s:6:"atLine";i:1308;}i:43;a:7:{s:6:"header";s:35:"function getGroupByFields(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['list.']['groupByFields']) {
$fNA=t3lib_div::trimexplode(',',$conf['list.']['groupByFields']);
$GROUPBYFIELDS='<!-- ###GROUPBYFIELDS### begin -->';
if ($conf['list.']['displayDirection']=='Down') $this->GROUPBYFIELDS.="<tr><td>";
$fNA=t3lib_div::trimexplode(',',$conf['list.']['groupByFields']);
foreach($fNA as $fN) {
$fN
[...]
>GROUPBYFIELDS.="</td></tr>";
$GROUPBYFIELDS.='<!-- ###GROUPBYFIELDS### end -->';
}
return $GROUPBYFIELDS;
}
";i:1;i:1;}s:12:"content_size";i:969;s:13:"content_lines";i:18;s:6:"atLine";i:1321;}i:45;a:7:{s:6:"header";s:42:"function getEditMenuItemTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['general.']['listMode']==1) return $this->getCalendarTemplate($conf);
if ($conf['general.']['listMode']==2) return $this->getGridTemplate($conf);
if ($conf['list.']['itemTpl']) return '<!-- ###TEMPLATE_EDITMENU### begin -->'.$conf['list.']['itemTpl'].'<!-- ###TEMPLATE_EDITMENU### end -->';
$actions='###ACTIONS-LIST-ELEMENT###';
$tmp='<!-- ###TEMPLATE_EDITME
[...]
ACTIONS-LIST-BOTTOM###</td></tr></table></div>';
$tmp.='<!-- ###TEMPLATE_EDITMENU### end -->';
//echo $tmp;
return $tmp;
}
";i:1;i:1;}s:12:"content_size";i:3417;s:13:"content_lines";i:31;s:6:"atLine";i:1346;}i:47;a:7:{s:6:"header";s:44:"function getEditMenuNoItemTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:"$pluginId=$conf['pluginId'];
if ($conf['list.']['noItemTpl']) return '<!-- ###TEMPLATE_EDITMENU_NOITEMS### begin -->'.$conf['list.']['noItemTpl'].'<!-- ###TEMPLATE_EDITMENU_NOITEMS### end -->';
return '<!-- ###TEMPLATE_EDITMENU_NOITEMS### begin -->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-edi
[...]
metafeeditlib->getLL("edit_menu_createnew_label",$conf).'</a></div></div>').'
<!-- ###TEMPLATE_EDITMENU_NOITEMS### -->';
}
";i:1;i:1;}s:12:"content_size";i:1130;s:13:"content_lines";i:9;s:6:"atLine";i:1384;}i:49;a:7:{s:6:"header";s:34:"function getGridTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['grid.']['itemTpl']) return '<!-- ###TEMPLATE_GRID### begin -->'.$conf['grid.']['itemTpl'].'<!-- ###TEMPLATE_GRID### end -->';
$actions='###ACTIONS-LIST-ELEMENT###';
$tmp='<!-- ###TEMPLATE_GRID### begin -->';
$tmp.='<div'.$this->caller->pi_classParam('form-wrap').'>';
$tmp.='<form name="'.$conf['table'].'_form" method="post" action="###FORM_URL###" enctype=
[...]
S### ###ACTIONS-GRID-BOTTOM###</td></tr></table>';
$tmp.='</form></div><!-- ###TEMPLATE_GRID### end -->';
return $tmp;
}
";i:1;i:1;}s:12:"content_size";i:1835;s:13:"content_lines";i:20;s:6:"atLine";i:1400;}i:51;a:7:{s:6:"header";s:38:"function getCalendarTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['grid.']['itemTpl']) return '<!-- ###TEMPLATE_GRID### begin -->'.$conf['grid.']['itemTpl'].'<!-- ###TEMPLATE_GRID### end -->';
$actions='###ACTIONS-LIST-ELEMENT###';
$tmp='<!-- ###TEMPLATE_GRID### begin -->';
$tmp.=($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-grid').'">'.$this->meta
[...]
<tr><td align="left">###ACTIONS-LIST-BOTTOM###</td></tr></table>';
$tmp.='<!-- ###TEMPLATE_GRID### end -->';
return $tmp;
}
";i:1;i:1;}s:12:"content_size";i:2637;s:13:"content_lines";i:23;s:6:"atLine";i:1427;}i:53;a:7:{s:6:"header";s:34:"function getEditTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if(!$conf['disableEdit']) $this->HTMLFormEdit = $this->makeHTMLForm('edit',$conf);
if($conf['edit.']['preview'] || $conf['blogData']) $this->HTMLPreviewEdit = $this->makeHTMLPreview('edit',$conf);
if ($conf['list.']['recordactions']) {
$ActionArr=t3lib_div::trimexplode(chr(10),$conf['list.']['recordactions']);
foreach($ActionArr as $action) {
$cmdarr=t3lib
[...]
ate($conf);
$tmpl.= $this->getEditPreviewTemplate($conf);
$tmpl.= $this->getEditSavedTemplate($conf);
return $tmpl;
}
";i:1;i:1;}s:12:"content_size";i:1034;s:13:"content_lines";i:24;s:6:"atLine";i:1457;}i:55;a:7:{s:6:"header";s:40:"function getEditScreenTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['edit.']['screenTpl']) return '<!-- ###TEMPLATE_EDIT### begin -->'.$conf['edit.']['screenTpl'].'<!-- ###TEMPLATE_EDIT### end-->';
$tmp= '<!-- ###TEMPLATE_EDIT### begin -->'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-edit').'">'.$this->metafeeditlib->getLL("edit_header_prefix",$con
[...]
['blog.']['showComments']) $tmp.=$this->getBlogTemplate($conf);
$tmp.='<!-- ###TEMPLATE_EDIT### end-->';
return $tmp;
}
";i:1;i:1;}s:12:"content_size";i:1512;s:13:"content_lines";i:20;s:6:"atLine";i:1488;}i:57;a:7:{s:6:"header";s:41:"function getEditPreviewTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $pluginId=$conf['pluginId'];
if ($conf['edit.']['previewTpl']) return '<!-- ###TEMPLATE_EDIT_PREVIEW### begin -->'.$conf['edit.']['previewTpl'].'<!-- ###TEMPLATE_EDIT_PREVIEW### end-->';
$tmp='<!-- ###TEMPLATE_EDIT_PREVIEW### begin -->';
$t2='
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header
[...]
]['showComments']) $tmp.=$this->getBlogTemplate($conf);
$tmp.='<!-- ###TEMPLATE_EDIT_PREVIEW### end-->';
return $tmp;
}
";i:1;i:1;}s:12:"content_size";i:2165;s:13:"content_lines";i:27;s:6:"atLine";i:1515;}i:59;a:7:{s:6:"header";s:39:"function getEditSavedTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['edit.']['savedTpl']) return '<!-- ###TEMPLATE_EDIT_SAVED### begin-->'.$conf['edit.']['savedTpl'].'<!-- ###TEMPLATE_EDIT_SAVED### end-->';
return '<!-- ###TEMPLATE_EDIT_SAVED### begin-->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-edit-saved').'">'.$this->metafeeditlib->getLL("edit_
[...]
URL_HSC###">'.$this->metafeeditlib->getLL("back_label",$conf).'</a></div></div>
<!-- ###TEMPLATE_EDIT_SAVED### end-->
';
}
";i:1;i:1;}s:12:"content_size";i:945;s:13:"content_lines";i:9;s:6:"atLine";i:1549;}i:61;a:7:{s:6:"header";s:34:"function getBlogTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $pluginId=$conf['pluginId'];
if ($conf['blog.']['blogtemplate']) return '<!-- ###TEMPLATE_BLOG### begin -->'.$conf['blog.']['blogtemplate'].'<!-- ###TEMPLATE_BLOG### end-->';
$tmp='<!-- ###TEMPLATE_BLOG### begin -->';
$t2=($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-blog').'">'.$this->me
[...]
e></div>';
$tmp.=$this->cObj->stdWrap($t2,$conf['blogWrap.']);
$tmp.='<!-- ###TEMPLATE_BLOG### end-->';
return $tmp;
}
";i:1;i:1;}s:12:"content_size";i:3055;s:13:"content_lines";i:28;s:6:"atLine";i:1565;}i:63;a:7:{s:6:"header";s:36:"function getCreateTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:353:" $this->HTMLFormCreate = $this->makeHTMLForm('create',$conf);
$this->HTMLPreviewCreate = $this->makeHTMLPreview('create',$conf);
return $this->getCreateSavedTemplate($conf).$this->getCreateScreenLoginTemplate($conf).$this->getCreatePreviewLoginTemplate($conf).$this->getCreateScreenTemplate($conf).$this->getCreatePreviewTemplate($conf);
}
";i:1;i:0;}s:12:"content_size";i:353;s:13:"content_lines";i:5;s:6:"atLine";i:1600;}i:65;a:7:{s:6:"header";s:47:"function getCreateScreenLoginTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $pluginId=$conf['pluginId'];
if ($conf['create.']['screenLoginTpl']) return '<!-- ###TEMPLATE_CREATE_LOGIN### -->'.$conf['create.']['screenLoginTpl'].'<!-- ###TEMPLATE_CREATE_LOGIN### end-->';
return '<!-- ###TEMPLATE_CREATE_LOGIN### -->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-create
[...]
RL_HSC###">'.$this->metafeeditlib->getLL("back_label",$conf).'</a></div></div>
<!-- ###TEMPLATE_CREATE_LOGIN### end-->';
}
";i:1;i:1;}s:12:"content_size";i:1804;s:13:"content_lines";i:20;s:6:"atLine";i:1612;}i:67;a:7:{s:6:"header";s:48:"function getCreatePreviewLoginTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $pluginId=$conf['pluginId'];
if ($conf['create.']['previewLoginTpl']) return '<!-- ###TEMPLATE_CREATE_LOGIN_PREVIEW### begin-->'.$conf['create.']['previewLoginTpl'].'<!-- ###TEMPLATE_CREATE_LOGIN_PREVIEW### end-->';
return '<!-- ###TEMPLATE_CREATE_LOGIN_PREVIEW### begin-->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->ca
[...]
assName('link-edit').'"></div></td></tr></table>
</div>
</form>
</div>
<!-- ###TEMPLATE_CREATE_LOGIN_PREVIEW### end-->';
}
";i:1;i:1;}s:12:"content_size";i:1935;s:13:"content_lines";i:19;s:6:"atLine";i:1639;}i:69;a:7:{s:6:"header";s:42:"function getCreateScreenTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $pluginId=$conf['pluginId'];
if ($conf['create.']['screenTpl']) return '<!-- ###TEMPLATE_CREATE### begin -->'.$conf['create.']['screenTpl'].'<!-- ###TEMPLATE_CREATE### end-->';
return '<!-- ###TEMPLATE_CREATE### begin -->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-create').'">'.$this->
[...]
ClassName('link-edit').'"></div></td></tr></table>
</div>
</form>
</div>
</div>
<!-- ###TEMPLATE_CREATE### end-->';
}
";i:1;i:1;}s:12:"content_size";i:1794;s:13:"content_lines";i:19;s:6:"atLine";i:1665;}i:71;a:7:{s:6:"header";s:43:"function getCreatePreviewTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $pluginID=$conf['pluginId'];
if ($conf['create.']['previewTpl']) return '<!-- ###TEMPLATE_CREATE_PREVIEW### begin-->'.$conf['create.']['previewTpl'].'<!-- ###TEMPLATE_CREATE_PREVIEW### end-->';
return '<!-- ###TEMPLATE_CREATE_PREVIEW### begin-->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('head
[...]
this->caller->pi_classParam('preview-submit').' />
</div>
</form>
</div>
<!-- ###TEMPLATE_CREATE_PREVIEW### end-->';
}
";i:1;i:1;}s:12:"content_size";i:1505;s:13:"content_lines";i:18;s:6:"atLine";i:1691;}i:73;a:7:{s:6:"header";s:41:"function getCreateSavedTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['create.']['savedTpl']) return '<!-- ###TEMPLATE_CREATE_SAVED### begin-->'.$conf['create.']['savedTpl'].'<!-- ###TEMPLATE_CREATE_SAVED### end-->';
return '<!-- ###TEMPLATE_CREATE_SAVED### begin-->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-create-saved').'">'.$this->metafeeditlib
[...]
RL_HSC###">'.$this->metafeeditlib->getLL("back_label",$conf).'</a></div></div>
<!-- ###TEMPLATE_CREATE_SAVED### end-->';
}
";i:1;i:1;}s:12:"content_size";i:968;s:13:"content_lines";i:8;s:6:"atLine";i:1716;}i:75;a:7:{s:6:"header";s:36:"function getDeleteTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:92:" return $this->getDeletePreviewTemplate($conf).$this->getDeleteSavedTemplate($conf);
}
";i:1;i:0;}s:12:"content_size";i:92;s:13:"content_lines";i:3;s:6:"atLine";i:1731;}i:77;a:7:{s:6:"header";s:43:"function getDeletePreviewTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $pluginId=$conf['pluginId'];
if ($conf['delete.']['previewTpl']) return '<!-- ###TEMPLATE_DELETE_PREVIEW### begin-->'.$conf['delete.']['previewTpl'].'<!-- ###TEMPLATE_DELETE_PREVIEW### end-->';
return '<!-- ###TEMPLATE_DELETE_PREVIEW### begin-->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('heade
[...]
eeditlib->getLL("delete_preview_dont_delete_label",$conf).'</a></div>
</div>
<!-- ###TEMPLATE_DELETE_PREVIEW### end-->';
}
";i:1;i:1;}s:12:"content_size";i:1425;s:13:"content_lines";i:12;s:6:"atLine";i:1741;}i:79;a:7:{s:6:"header";s:41:"function getDeleteSavedTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['delete.']['savedTpl']) return '<!-- ###TEMPLATE_DELETE_SAVED### begin-->'.$conf['delete.']['savedTpl'].'<!-- ###TEMPLATE_DELETE_SAVED### end-->';
return '<!-- ###TEMPLATE_DELETE_SAVED### begin-->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-delete-saved').'">'.$this->metafeeditlib
[...]
_HSC###">'.$this->metafeeditlib->getLL("back_label",$conf).'</a></div></div>
<!-- ###TEMPLATE_DELETE_SAVED### end-->';
}
";i:1;i:1;}s:12:"content_size";i:928;s:13:"content_lines";i:8;s:6:"atLine";i:1760;}i:81;a:7:{s:6:"header";s:38:"function getSetfixedTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:132:" return $this->getSetfixedOkTemplate($conf).$this->getSetfixedOkDeleteTemplate($conf).$this->getSetfixedFailedTemplate($conf);
}
";i:1;i:0;}s:12:"content_size";i:132;s:13:"content_lines";i:3;s:6:"atLine";i:1775;}i:83;a:7:{s:6:"header";s:40:"function getSetfixedOkTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:591:" if ($conf['setfixed.']['setFixedOkTemplate']) return '<!-- ###TEMPLATE_SETFIXED_OK### -->'.$conf['setfixed.']['setFixedOkTemplate'].'<!-- ###TEMPLATE_SETFIXED_OK### end-->';
return '
<!-- ###TEMPLATE_SETFIXED_OK### -->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-setfixed-ok').'">Setfixed succeeded</h1>').'
<div class="'.$this->caller->pi_getClassName('message').' '.$this->caller->pi_getClassName('message-setfixed-ok').'">Record uid; ###FIELD_uid###</div>
<!-- ###TEMPLATE_SETFIXED_OK### end-->';
}
";i:1;i:0;}s:12:"content_size";i:591;s:13:"content_lines";i:8;s:6:"atLine";i:1785;}i:85;a:7:{s:6:"header";s:46:"function getSetfixedOkDeleteTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['setfixed.']['setFixedOkDeleteTemplate']) return '<!-- ###TEMPLATE_SETFIXED_OK_DELETE### -->'.$conf['setfixed.']['setFixedOkDeleteTemplate'].'<!-- ###TEMPLATE_SETFIXED_OK_DELETE### end-->';
return '<!-- ###TEMPLATE_SETFIXED_OK_DELETE### -->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('hea
[...]
getClassName('message-setfixed-ok').'">Record uid; ###FIELD_uid###</div>
<!-- ###TEMPLATE_SETFIXED_OK_DELETE### end-->';
}
";i:1;i:1;}s:12:"content_size";i:656;s:13:"content_lines";i:7;s:6:"atLine";i:1800;}i:87;a:7:{s:6:"header";s:44:"function getSetfixedFailedTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['setfixed.']['setFixedFailedTemplate']) return '<!-- ###TEMPLATE_SETFIXED_FAILED### -->'.$conf['setfixed.']['setFixedFailedTemplate'].'<!-- ###TEMPLATE_SETFIXED_FAILED### end-->';
return '<!-- ###TEMPLATE_SETFIXED_FAILED### -->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-setfixed-
[...]
ged since the setfixed link was generated this error will happen!)</div>
<!-- ###TEMPLATE_SETFIXED_FAILED### end-->
';
}
";i:1;i:1;}s:12:"content_size";i:738;s:13:"content_lines";i:8;s:6:"atLine";i:1814;}i:89;a:7:{s:6:"header";s:35:"function getEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:88:" return $this->getCreateEmailTemplate($conf).$this->getEditEmailTemplate($conf);
}
";i:1;i:0;}s:12:"content_size";i:88;s:13:"content_lines";i:3;s:6:"atLine";i:1829;}i:91;a:7:{s:6:"header";s:41:"function getCreateEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:239:" return $this->getCreateUserEmailTemplate($conf).$this->getCreateAdminNotifyEmailTemplate($conf).$this->getCreateDataNotifyEmailTemplate($conf).$this->getCreateAdminEmailTemplate($conf).$this->getCreateSetFixedEmailTemplate($conf);
}
";i:1;i:0;}s:12:"content_size";i:239;s:13:"content_lines";i:3;s:6:"atLine";i:1839;}i:93;a:7:{s:6:"header";s:45:"function getCreateUserEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:579:" if ($conf['create.']['userNotifyTpl']) return '<!-- ###EMAIL_TEMPLATE_CREATE_SAVED### begin -->'.$conf['create.']['userNotifyTpl'].'<!-- ###EMAIL_TEMPLATE_CREATE_SAVED### end-->';
return '<!-- ###EMAIL_TEMPLATE_CREATE_SAVED### begin -->
[Auto Generated Message] Your informations has been saved.
<!--###SUB_RECORD###-->
You have submitted the following informations at '.t3lib_div::getIndpEnv('TYPO3_SITE_URL').':'.chr(10).'
'.$this->makeTEXTPreview('all',$conf).'
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_CREATE_SAVED### end-->';
}
";i:1;i:0;}s:12:"content_size";i:579;s:13:"content_lines";i:11;s:6:"atLine";i:1849;}i:95;a:7:{s:6:"header";s:52:"function getCreateAdminNotifyEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['create.']['adminNotifyTpl']) return '<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-ADMIN_NOTIFY### begin -->'.$conf['create.']['adminNotifyTpl'].'<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-ADMIN_NOTIFY### end-->';
return '<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-ADMIN_NOTIFY### begin -->
[Auto Generated Message] New record created.
<!--###SUB_RECORD###-->
'.$this->makeTEXTPreview('all',$conf).'
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-ADMIN_NOTIFY### end-->';
}
";i:1;i:0;}s:12:"content_size";i:507;s:13:"content_lines";i:11;s:6:"atLine";i:1867;}i:97;a:7:{s:6:"header";s:51:"function getCreateDataNotifyEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:476:" if ($conf['create.']['dataNotifyTpl']) return '<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-DATA### begin -->'.$conf['create.']['dataNotifyTpl'].'<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-DATA### end-->';
return '<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-DATA### begin -->
[Auto Generated Message] You have been invited.
<!--###SUB_RECORD###-->
'.$this->makeTEXTPreview('all',$conf).'
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-DATA### end-->';
}
";i:1;i:0;}s:12:"content_size";i:476;s:13:"content_lines";i:11;s:6:"atLine";i:1885;}i:99;a:7:{s:6:"header";s:46:"function getCreateAdminEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['create.']['adminValidTpl']) return '<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-ADMIN### begin -->'.$conf['create.']['adminValidTpl'].'<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-ADMIN### end-->';
return '<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-ADMIN### begin -->
[Auto Generated Message] New record created.
<!--###SUB_RECORD###-->
'.$this->makeTEXTPreview('all
[...]
RM_URL######SYS_SETFIXED_DELETE###
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_CREATE_SAVED-ADMIN### end-->';
}
";i:1;i:1;}s:12:"content_size";i:636;s:13:"content_lines";i:16;s:6:"atLine";i:1903;}i:101;a:7:{s:6:"header";s:49:"function getCreateSetFixedEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:110:" return $this->getCreateSetFixedKOEmailTemplate($conf).$this->getCreateSetFixedOKEmailTemplate($conf);
}
";i:1;i:0;}s:12:"content_size";i:110;s:13:"content_lines";i:3;s:6:"atLine";i:1926;}i:103;a:7:{s:6:"header";s:51:"function getCreateSetFixedKOEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:499:"if ($conf['create.']['userNotifyKoTpl']) return '<!-- ###EMAIL_TEMPLATE_SETFIXED_DELETE### begin -->'.$conf['create.']['userNotifyKoTpl'].'<!-- ###EMAIL_TEMPLATE_SETFIXED_DELETE### end -->';
return '<!-- ###EMAIL_TEMPLATE_SETFIXED_DELETE### begin -->
Consultancy DELETED!
<!--###SUB_RECORD###-->
Record name: ###FIELD_'.$this->id_field.'###
Your entry has been deleted by the admin for some reason.
- kind regards.
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_SETFIXED_DELETE### end -->';
}
";i:1;i:0;}s:12:"content_size";i:499;s:13:"content_lines";i:14;s:6:"atLine";i:1936;}i:105;a:7:{s:6:"header";s:51:"function getCreateSetFixedOKEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:476:" if ($conf['create.']['userNotifyOkTpl']) return '<!-- ###EMAIL_TEMPLATE_SETFIXED_approve### begin -->'.$conf['create.']['userNotifyOkTpl'].'<!-- ###EMAIL_TEMPLATE_SETFIXED_approve### end -->';
return '<!-- ###EMAIL_TEMPLATE_SETFIXED_approve### begin -->
Update approved
<!--###SUB_RECORD###-->
Record name: ###FIELD_'.$this->id_field.'###
Your entry has been approved!
- kind regards.
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_SETFIXED_approve### end -->
';
}
";i:1;i:0;}s:12:"content_size";i:476;s:13:"content_lines";i:16;s:6:"atLine";i:1957;}i:107;a:7:{s:6:"header";s:39:"function getEditEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:233:" return $this->getEditUserEmailTemplate($conf).$this->getEditAdminNotifyEmailTemplate($conf).$this->getEditDataNotifyEmailTemplate($conf).$this->getEditAdminEmailTemplate($conf).$this->getEditSetFixedEmailTemplate($conf);
}
";i:1;i:0;}s:12:"content_size";i:233;s:13:"content_lines";i:3;s:6:"atLine";i:1980;}i:109;a:7:{s:6:"header";s:43:"function getEditUserEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:567:" if ($conf['edit.']['userNotifyTpl']) return '<!-- ###EMAIL_TEMPLATE_EDIT_SAVED### begin -->'.$conf['edit.']['userNotifyTpl'].'<!-- ###EMAIL_TEMPLATE_EDIT_SAVED### end-->';
return '<!-- ###EMAIL_TEMPLATE_EDIT_SAVED### begin -->
[Auto Generated Message] Your informations has been saved.
<!--###SUB_RECORD###-->
You have submitted the following informations at '.t3lib_div::getIndpEnv('TYPO3_SITE_URL').':'.chr(10).'
'.$this->makeTEXTPreview('all',$conf).'
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_EDIT_SAVED### end-->';
}
";i:1;i:0;}s:12:"content_size";i:567;s:13:"content_lines";i:11;s:6:"atLine";i:1990;}i:111;a:7:{s:6:"header";s:50:"function getEditAdminNotifyEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:502:" if ($conf['edit.']['adminNotifyTpl']) return '<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-ADMIN_NOTIFY### begin -->'.$conf['edit.']['adminNotifyTpl'].'<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-ADMIN_NOTIFY### end-->';
return '<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-ADMIN_NOTIFY### begin -->
[Auto Generated Message] Consultancy record edited.
<!--###SUB_RECORD###-->
'.$this->makeTEXTPreview('all',$conf).'
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-ADMIN_NOTIFY### end-->';
}
";i:1;i:0;}s:12:"content_size";i:502;s:13:"content_lines";i:11;s:6:"atLine";i:2008;}i:113;a:7:{s:6:"header";s:49:"function getEditDataNotifyEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:468:" if ($conf['edit.']['dataNotifyTpl']) return '<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-DATA### begin -->'.$conf['edit.']['dataNotifyTpl'].'<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-DATA### end-->';
return '<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-DATA### begin -->
[Auto Generated Message] Consultancy record edited.
<!--###SUB_RECORD###-->
'.$this->makeTEXTPreview('all',$conf).'
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-DATA### end-->';
}
";i:1;i:0;}s:12:"content_size";i:468;s:13:"content_lines";i:11;s:6:"atLine";i:2026;}i:115;a:7:{s:6:"header";s:44:"function getEditAdminEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['edit.']['adminValidTpl']) return '<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-ADMIN### begin -->'.$conf['edit.']['adminValidTpl'].'<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-ADMIN### end-->';
return '<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-ADMIN### begin -->
[Auto Generated Message] Consultancy record edited.
<!--###SUB_RECORD###-->
'.$this->makeTEXTPreview('all',$
[...]
FORM_URL######SYS_SETFIXED_DELETE###
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_EDIT_SAVED-ADMIN### end-->';
}
";i:1;i:1;}s:12:"content_size";i:631;s:13:"content_lines";i:16;s:6:"atLine";i:2044;}i:117;a:7:{s:6:"header";s:47:"function getEditSetFixedEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:106:" return $this->getEditSetFixedKOEmailTemplate($conf).$this->getEditSetFixedOKEmailTemplate($conf);
}
";i:1;i:0;}s:12:"content_size";i:106;s:13:"content_lines";i:3;s:6:"atLine";i:2067;}i:119;a:7:{s:6:"header";s:49:"function getEditSetFixedKOEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:499:" if ($conf['edit.']['userNotifyKoTpl']) return '<!-- ###EMAIL_TEMPLATE_SETFIXED_DELETE### begin -->'.$conf['edit.']['userNotifyKoTpl'].'<!-- ###EMAIL_TEMPLATE_SETFIXED_DELETE### end -->';
return '<!-- ###EMAIL_TEMPLATE_SETFIXED_DELETE### begin -->
Consultancy DELETED!
<!--###SUB_RECORD###-->
Record name: ###FIELD_'.$this->id_field.'###
Your entry has been deleted by the admin for some reason.
- kind regards.
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_SETFIXED_DELETE### end -->';
}
";i:1;i:0;}s:12:"content_size";i:499;s:13:"content_lines";i:14;s:6:"atLine";i:2077;}i:121;a:7:{s:6:"header";s:49:"function getEditSetFixedOKEmailTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:489:" if ($conf['edit.']['userNotifyOkTpl']) return '<!-- ###EMAIL_TEMPLATE_SETFIXED_approve### begin -->'.$conf['edit.']['userNotifyOkTpl'].'<!-- ###EMAIL_TEMPLATE_SETFIXED_approve### end -->';
return '<!-- ###EMAIL_TEMPLATE_SETFIXED_approve### begin -->
Consultancy approved
<!--###SUB_RECORD###-->
Record name: ###FIELD_'.$this->id_field.'###
Your consultancy entry has been approved!
- kind regards.
<!--###SUB_RECORD###-->
<!-- ###EMAIL_TEMPLATE_SETFIXED_approve### end -->';
}
";i:1;i:0;}s:12:"content_size";i:489;s:13:"content_lines";i:16;s:6:"atLine";i:2098;}i:123;a:7:{s:6:"header";s:38:"function getRequiredTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:96:" return $this->getRequiredAuthTemplate($conf).$this->getRequiredNoPermTemplate($conf);
}
";i:1;i:0;}s:12:"content_size";i:96;s:13:"content_lines";i:3;s:6:"atLine";i:2121;}i:125;a:7:{s:6:"header";s:42:"function getRequiredAuthTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:557:" if ($conf['general.']['authTpl']) return '<!-- ###TEMPLATE_AUTH### begin -->'.$conf['general.']['authTpl'].'<!-- ###TEMPLATE_AUTH### end-->';
return '<!-- ###TEMPLATE_AUTH### begin -->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-auth').'">Authentification failed</h1>').'
<div class="'.$this->caller->pi_getClassName('message').' '.$this->caller->pi_getClassName('message-auth').'">For some reason the authentication failed. </div>
<!-- ###TEMPLATE_AUTH### end-->';
}
";i:1;i:0;}s:12:"content_size";i:557;s:13:"content_lines";i:7;s:6:"atLine";i:2131;}i:127;a:7:{s:6:"header";s:44:"function getRequiredNoPermTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" if ($conf['general.']['noPermTpl']) return '<!-- ###TEMPLATE_NO_PERMISSIONS### begin -->'.$conf['general.']['noPermTpl'].'<!-- ###TEMPLATE_NO_PERMISSIONS### end-->';
return '<!-- ###TEMPLATE_NO_PERMISSIONS### begin -->
'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-no-permissions').'">No perm
[...]
missions').'">Sorry, you did not have permissions to edit the record.</div>
<!-- ###TEMPLATE_NO_PERMISSIONS### end-->';
}
";i:1;i:1;}s:12:"content_size";i:639;s:13:"content_lines";i:7;s:6:"atLine";i:2145;}i:129;a:7:{s:6:"header";s:41:"function getMediaPlayerTemplate(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" return '<!-- ###TEMPLATE_MEDIAPLAYER### begin -->'.$conf['edit.']['mediaPlayerTpl'].'<!-- ###TEMPLATE_MEDIAPLAYER### end-->';
$tmp= '<!-- ###TEMPLATE_MEDIAPLAYER### begin -->'.($conf['no_header']?'':'<h1 class="'.$this->caller->pi_getClassName('header').' '.$this->caller->pi_getClassName('header-edit').'">'.$this->metafeeditlib->getLL("edit_header_prefix",$conf).' "
[...]
*
* JAVASCRIPT FUNCTIONS
* *********************************************************************************************/
";i:1;i:1;}s:12:"content_size";i:1211;s:13:"content_lines";i:25;s:6:"atLine";i:2159;}i:131;a:8:{s:6:"header";s:29:"function getMD5Submit($cmd) {";s:11:"parentClass";s:13:"tx_metafeedit";s:11:"sectionText";a:1:{i:0;s:20:"JAVASCRIPT FUNCTIONS";}s:4:"cDat";a:3:{s:4:"text";s:1:"
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:9:"$cmd: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" $JSPart = '
';
if ($cmd == 'edit') {
$JSPart .= "var pw_change = 0;
";
}
$JSPart .= "function enc_form(form) {
var pass = form['FE[" . $this->t
[...]
$JSPart .= "return true;
}";
return $JSPart;
}
";i:1;i:1;}s:12:"content_size";i:2566;s:13:"content_lines";i:43;s:6:"atLine";i:2189;}i:133;a:7:{s:6:"header";s:38:"function getFormJs($formName,&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:2:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:14:"$formName: ...";}i:1;a:2:{i:0;s:6:"[type]";i:1;s:10:"$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:"
$result.='
function feedit_'.$formName.'Set(theField, evallist, is_in, checkbox, checkboxValue,checkbox_off){
/*alert("SET:" + theField+": "+document.'.$formName.'[theField].value);*/
var theFObj = new evalFunc_dummy (evallist,is_in, checkbox, checkboxValue);
var feValField = theField+"_feVal";
if(!(document.'.$formName.' && doc
[...]
feedit_'.$formName.'Set(theField, evallist, is_in, checkbox, checkboxValue,checkbox_off);
}
';
return $result;
}
";i:1;i:1;}s:12:"content_size";i:1738;s:13:"content_lines";i:39;s:6:"atLine";i:2240;}i:135;a:7:{s:6:"header";s:30:"function getJSBefore(&$conf) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:11:"$$conf: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:379:" if (t3lib_extMgm::isLoaded('kb_md5fepw')) $GLOBALS['TSFE']->additionalHeaderData['MD5_script'] = '<script type="text/javascript" src="typo3/md5.js"></script>';
$formName = $this->table.'_form';
$result .= '<script type="text/javascript" src="t3lib/jsfunc.evalfield.js"></script>
<script type="text/javascript">
/*<![CDATA[*/
var DTM_currentTabs = new Array();";i:1;i:0;}s:12:"content_size";i:379;s:13:"content_lines";i:8;s:6:"atLine";i:2286;}i:137;a:6:{s:6:"header";s:22:"function typoSetup() {";s:11:"parentClass";s:13:"tx_metafeedit";s:7:"content";a:2:{i:0;s:272:" /* this.passwordDummy = "********";*/
this.decimalSign = ".";
}
var TS = new typoSetup();
var evalFunc = new evalFunc();';
$result.=$this->getFormJs($formName,$conf);
$result.=$this->getFormJs('tx_metafeedit_comments_form',$conf);
$result.='
";i:1;i:0;}s:12:"content_size";i:272;s:13:"content_lines";i:9;s:6:"atLine";i:2296;}i:139;a:7:{s:6:"header";s:52:"function feedit_manipulateMultipleSelect(theField) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:14:"$theField: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:582:" selObj = document.'.$formName.'[theField+"_select"];
val = selObj.value;
list = document.'.$formName.'[theField].value;
newList = "";
for(i=0;i<selObj.length;i++) {
if(selObj.options[i].selected == true) {
newList += selObj.options[i].value+",";
}
}
if(newList.length!=0)
newList = newList.substring(0,newList.length-1);
document.'.$formName.'[theField].value = newList;
}
";i:1;i:0;}s:12:"content_size";i:582;s:13:"content_lines";i:15;s:6:"atLine";i:2312;}i:141;a:7:{s:6:"header";s:43:"function feedit_manipulateGroup(theField) {";s:11:"parentClass";s:13:"tx_metafeedit";s:4:"cDat";a:3:{s:4:"text";s:25:"
[Describe function...]
";s:5:"param";a:1:{i:0;a:2:{i:0;s:6:"[type]";i:1;s:14:"$theField: ...";}}s:6:"return";a:2:{i:0;s:6:"[type]";i:1;s:3:"...";}}s:7:"content";a:2:{i:0;s:507:" selObj = document.'.$formName.'[theField+"_select"];
val = selObj.value;
list = document.'.$formName.'[theField].value;
newList = "";
for(i=0;i<selObj.length;i++) {
if(selObj.options[i].selected == false) {
newList += selObj.options[i].value+",";
[...]
document.'.$formName.'[theField].value = newList;