This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
forked from nilsteampassnet/TeamPass
-
Notifications
You must be signed in to change notification settings - Fork 8
/
items.php
1093 lines (1040 loc) · 58.7 KB
/
items.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
*
* @package items.php
* @author Nils Laumaillé <[email protected]>
* @version 2.1.27
* @copyright 2009-2019 Nils Laumaillé
* @license GNU GPL-3.0
* @link https://www.teampass.net
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
if (!isset($_SESSION['CPM']) || $_SESSION['CPM'] != 1 ||
!isset($_SESSION['user_id']) || empty($_SESSION['user_id']) ||
!isset($_SESSION['key']) || empty($_SESSION['key'])
) {
die('Hacking attempt...');
}
// Load config
if (file_exists('../includes/config/tp.config.php')) {
include_once '../includes/config/tp.config.php';
} elseif (file_exists('./includes/config/tp.config.php')) {
include_once './includes/config/tp.config.php';
} else {
throw new Exception("Error file '/includes/config/tp.config.php' not exists", 1);
}
/* do checks */
require_once $SETTINGS['cpassman_dir'].'/sources/checks.php';
if (!checkUser($_SESSION['user_id'], $_SESSION['key'], curPage())) {
$_SESSION['error']['code'] = ERR_NOT_ALLOWED; //not allowed page
include $SETTINGS['cpassman_dir'].'/error.php';
exit();
}
require_once $SETTINGS['cpassman_dir'].'/sources/SplClassLoader.php';
require_once $SETTINGS['cpassman_dir'].'/sources/main.functions.php';
require_once $SETTINGS['cpassman_dir'].'/includes/libraries/protect/SuperGlobal/SuperGlobal.php';
$superGlobal = new protect\SuperGlobal\SuperGlobal();
// Prepare GET variables
$get_group = $superGlobal->get("group", "GET");
$get_id = $superGlobal->get("id", "GET");
// Prepare SESSION variables
$session_user_admin = $superGlobal->get("user_admin", "SESSION");
if ($session_user_admin === '1'
&& (isset($SETTINGS_EXT['admin_full_right']) === true && $SETTINGS_EXT['admin_full_right'] === true)
|| isset($SETTINGS_EXT['admin_full_right']) === false
) {
$_SESSION['groupes_visibles'] = $_SESSION['personal_visible_groups'];
$_SESSION['groupes_visibles_list'] = implode(',', $_SESSION['groupes_visibles']);
}
// Get list of users
$usersList = array();
$rows = DB::query("SELECT id,login,email FROM ".$pre."users ORDER BY login ASC");
foreach ($rows as $record) {
$usersList[$record['login']] = array(
"id" => $record['id'],
"login" => $record['login'],
"email" => $record['email'],
);
}
// Get list of roles
$arrRoles = array();
$listRoles = "";
$rows = DB::query("SELECT id,title FROM ".$pre."roles_title ORDER BY title ASC");
foreach ($rows as $reccord) {
$arrRoles[$reccord['title']] = array(
'id' => $reccord['id'],
'title' => $reccord['title']
);
if (empty($listRoles)) {
$listRoles = $reccord['id'].'#'.$reccord['title'];
} else {
$listRoles .= ';'.$reccord['id'].'#'.$reccord['title'];
}
}
// Hidden things
echo '
<input type="hidden" name="hid_cat" id="hid_cat" value="', $get_group !== null ? $get_group : "", '" />
<input type="hidden" id="complexite_groupe" value="" />
<input type="hidden" name="selected_items" id="selected_items" value="" />
<input type="hidden" id="bloquer_creation_complexite" value="" />
<input type="hidden" id="bloquer_modification_complexite" value="" />
<input type="hidden" id="error_detected" value="" />
<input type="hidden" name="random_id" id="random_id" value="" />
<input type="hidden" id="edit_wysiwyg_displayed" value="" />
<input type="hidden" id="richtext_on" value="1" />
<input type="hidden" id="query_next_start" value="0" />
<input type="hidden" id="display_categories" value="0" />
<input type="hidden" id="nb_items_to_display_once" value="', isset($SETTINGS['nb_items_by_query']) ? htmlspecialchars($SETTINGS['nb_items_by_query']) : 'auto', '" />
<input type="hidden" id="user_is_read_only" value="', isset($_SESSION['user_read_only']) && $_SESSION['user_read_only'] == 1 ? '1' : '', '" />
<input type="hidden" id="request_ongoing" value="" />
<input type="hidden" id="request_lastItem" value="" />
<input type="hidden" id="item_editable" value="" />
<input type="hidden" id="timestamp_item_displayed" value="" />
<input type="hidden" id="pf_selected" value="" />
<input type="hidden" id="user_ongoing_action" value="" />
<input type="hidden" id="input_list_roles" value="'.htmlentities($listRoles).'" />
<input type="hidden" id="path_fontsize" value="" />
<input type="hidden" id="access_level" value="" />
<input type="hidden" id="empty_clipboard" value="" />
<input type="hidden" id="selected_folder_is_personal" value="" />
<input type="hidden" id="personal_visible_groups_list" value="', isset($_SESSION['personal_visible_groups_list']) ? $_SESSION['personal_visible_groups_list'] : "", '" />
<input type="hidden" id="create_item_without_password" value="', isset($SETTINGS['create_item_without_password']) ? $SETTINGS['create_item_without_password'] : "0", '" />';
// Hidden objects for Item search
if ($get_group !== null && $get_id !== null) {
echo '
<input type="hidden" name="open_folder" id="open_folder" value="'.$get_group.'" />
<input type="hidden" name="open_id" id="open_id" value="'.$get_id.'" />
<input type="hidden" name="recherche_group_pf" id="recherche_group_pf" value="', in_array($get_group, $_SESSION['personal_visible_groups']) ? '1' : '0', '" />
<input type="hidden" name="open_item_by_get" id="open_item_by_get" value="true" />';
} elseif ($get_group !== null && $get_id === null) {
echo '<input type="hidden" name="open_folder" id="open_folder" value="'.$get_group.'" />';
echo '<input type="hidden" name="open_id" id="open_id" value="" />';
echo '<input type="hidden" name="recherche_group_pf" id="recherche_group_pf" value="', in_array($get_group, $_SESSION['personal_visible_groups']) ? '1' : '0', '" />';
echo '<input type="hidden" name="open_item_by_get" id="open_item_by_get" value="" />';
} else {
echo '<input type="hidden" name="open_folder" id="open_folder" value="" />';
echo '<input type="hidden" name="open_id" id="open_id" value="" />';
echo '<input type="hidden" name="recherche_group_pf" id="recherche_group_pf" value="" />';
echo '<input type="hidden" name="open_item_by_get" id="open_item_by_get" value="" />';
}
// Is personal SK available
echo '
<input type="hidden" name="personal_sk_set" id="personal_sk_set" value="', isset($_SESSION['user_settings']['session_psk']) && !empty($_SESSION['user_settings']['session_psk']) ? '1' : '0', '" />
<input type="hidden" id="personal_upgrade_needed" value="', isset($SETTINGS['enable_pf_feature']) && $SETTINGS['enable_pf_feature'] == 1 && $session_user_admin !== '1' && isset($_SESSION['user_upgrade_needed']) && $_SESSION['user_upgrade_needed'] == 1 ? '1' : '0', '" />';
// define what group todisplay in Tree
if (isset($_COOKIE['jstree_select']) && !empty($_COOKIE['jstree_select'])) {
$firstGroup = str_replace("#li_", "", $_COOKIE['jstree_select']);
} else {
$firstGroup = "";
}
echo '
<input type="hidden" name="jstree_group_selected" id="jstree_group_selected" value="'.htmlspecialchars($firstGroup).'" />
<input type="hidden" id="item_user_token" value="" />
<input type="hidden" id="items_listing_should_stop" value="" />
<input type="hidden" id="new_listing_characteristics" value="" />
<input type="hidden" id="uniqueLoadData" value="" />
<input type="hidden" id="otv-url" value="" />';
echo '
<div id="div_items">';
// MAIN ITEMS TREE
echo '
<div class="items_tree">
<div id="quick_menu" style="float:left; margin-right: 5px;">
<ul class="quick_menu">
<li><i class="fa fa-bars"></i>
<ul class="menu_250">
<li id="jstree_open"><i class="fa fa-expand fa-fw"></i> '.$LANG['expand'].'</li>
<li id="jstree_close"><i class="fa fa-compress fa-fw"></i> '.$LANG['collapse'].'</li>
<li onclick="refreshTree()"><i class="fa fa-refresh fa-fw"></i> '.$LANG['refresh'].'</li>
<li onclick="open_add_group_div()"><i class="fa fa-plus fa-fw"></i> '.$LANG['item_menu_add_rep'].'</li>
<li onclick="open_edit_group_div()"><i class="fa fa-pencil fa-fw"></i> '.$LANG['item_menu_edi_rep'].'</li>
<li onclick="open_move_group_div()"><i class="fa fa-arrows fa-fw"></i> '.$LANG['item_menu_mov_rep'].'</li>
<li onclick="open_del_group_div()"><i class="fa fa-eraser fa-fw"></i> '.$LANG['item_menu_del_rep'].'</li>
<li onclick="openCopyFolderDialog()"><i class="fa fa-copy fa-fw"></i> '.$LANG['copy_folder'].'</li>
', isset($SETTINGS['allow_import']) && $SETTINGS['allow_import'] == 1 && $session_user_admin !== '1' ? '<li onclick="loadImportDialog()"><i class="fa fa-cloud-upload fa-fw"></i> '.$LANG['import_csv_menu_title'].'</li>' : '',
(isset($SETTINGS['allow_print']) && $SETTINGS['allow_print'] == 1 && $session_user_admin !== '1' && $_SESSION['temporary']['user_can_printout'] === true) ? '<li onclick="loadExportDialog()"><i class="fa fa-cloud-download fa-fw"></i> '.$LANG['print_out_menu_title'].'</li>' : '',
(isset($SETTINGS['settings_offline_mode']) && $SETTINGS['settings_offline_mode'] == 1 && $session_user_admin !== '1') ? '<li onclick="loadOfflineDialog()"><i class="fa fa-laptop fa-fw"></i> '.$LANG['offline_menu_title'].'</li>' : '', '
</ul>
</li>
</ul>
</div>
<div style="margin:3px 0px 10px 18px;font-weight:bold;">
'.$LANG['items_browser_title'].'
<input type="text" name="jstree_search" id="jstree_search" class="text ui-widget-content ui-corner-all search_tree" value="'.htmlentities(strip_tags($LANG['item_menu_find']), ENT_QUOTES).'" />
</div>
<div id="sidebar" class="sidebar">
<div id="jstree" style="overflow:auto;"></div>
</div>
</div>';
// Zone top right - items list
echo '
<div id="items_content">
<div id="items_center">
<div id="items_path" class="ui-corner-all">
<div class="quick_menu1" style="float:left; margin-right: 5px;">
<ul class="quick_menu">
<li><i class="fa fa-bars"></i>
<ul class="menu_250">
<li id="menu_button_add_item" onclick="open_add_item_div()"><i class="fa fa-plus fa-fw"></i> '.$LANG['item_menu_add_elem'].'</li>
<li id="menu_button_edit_item" onclick="open_edit_item_div(', isset($SETTINGS['restricted_to_roles']) && $SETTINGS['restricted_to_roles'] == 1 ? 1 : 0, ')"><i class="fa fa-pencil fa-fw"></i> '.$LANG['item_menu_edi_elem'].'</li>
<li id="menu_button_del_item" onclick="open_del_item_div()"><i class="fa fa-eraser fa-fw"></i> '.$LANG['item_menu_del_elem'].'</li>
<li id="menu_button_copy_item" onclick="open_copy_item_to_folder_div()"><i class="fa fa-copy fa-fw"></i> '.$LANG['item_menu_copy_elem'].'</li>
</ul>
</li>
</ul>
</div>
<div style="margin-top: 3px;">
<div id="txt1" style="float:left;">
<span id="items_path_var"></span>
</div>
<div class="input-group margin-bottom-sm" style="float:right; margin-top:-1px;">
<span class="input-group-addon"><i class="fa fa-binoculars fa-fw"></i></span>
<input class="form-control text ui-widget-content" type="text" onkeypress="javascript:if (event.keyCode == 13) globalItemsSearch();" id="search_item" />
</div>
<i id="items_list_loader" style="float:right;margin-right:5px;" class="fa fa-cog fa-spin mi-red hidden"></i>
</div>
</div>
<div id="items_list"></div>
</div>';
// Zone ITEM DETAIL
echo '
<div id="item_details_ok">
<input type="hidden" id="id_categorie" value="" />
<input type="hidden" id="id_item" value="" />
<input type="hidden" id="hid_anyone_can_modify" value="" />
<input type="hidden" id="template_selected_id" value="" />
<div style="height:220px;overflow-y:auto;" id="item_details_scroll">
<div id="handle" class="ui-resizable-handle ui-resizable-n"></div>';
echo'
<div id="item_details_expired" style="display:none;background-color:white; margin:5px;">
<div class="ui-state-error ui-corner-all" style="padding:2px;">
<i class="fa fa-warning"></i> <b>'.$LANG['pw_is_expired_-_update_it'].'</b>
</div>
</div>
<table width="100%" class="no-border" id="item_details_table">';
// Line for LABEL
echo '
<tr>
<td valign="top" class="td_title" width="150px" style="background-color:rgba(178, 178, 178, 0.13);">
<div class="quick_menu2" style="float:left; margin-right: 5px;">
<ul class="quick_menu ui-menu">
<li><i class="fa fa-bars"></i>
<ul class="menu_250">
<li id="menu_button_copy_pw" class="copy_clipboard"><i class="fa fa-lock fa-fw"></i> '.$LANG['pw_copy_clipboard'].'</li>
<li id="menu_button_copy_login" class="copy_clipboard"><i class="fa fa-user fa-fw"></i> '.$LANG['login_copy'].'</li>
<li id="menu_button_show_pw" onclick="ShowPassword()"><i class="fa fa-eye fa-fw"></i> '.$LANG['mask_pw'].'</li>
<li id="menu_button_copy_link" class="copy_clipboard"><i class="fa fa-link fa-fw"></i> '.$LANG['url_copy'].'</li>
<li id="menu_button_history" onclick="OpenDialog(\'div_item_history\', \'false\')"><i class="fa fa-history fa-fw"></i> '.$LANG['history'].'</li>
<li id="menu_button_share" onclick="OpenDialog(\'div_item_share\', \'false\')"><i class="fa fa-share fa-fw"></i> '.$LANG['share'].'</li>',
(isset($SETTINGS['otv_is_enabled']) && $SETTINGS['otv_is_enabled'] == 1) ? '<li id="menu_button_otv" onclick="prepareOneTimeView()"><i class="fa fa-users fa-fw"></i> '.$LANG['one_time_item_view'].'</li>' : '', '
', isset($SETTINGS['enable_email_notification_on_item_shown']) && $SETTINGS['enable_email_notification_on_item_shown'] == 1 ? '
<li id="menu_button_notify"><i class="fa fa-volume-up fa-fw"></i> '.$LANG['notify_me_on_change'].'</li>' : '', '
', isset($SETTINGS['enable_server_password_change']) && $SETTINGS['enable_server_password_change'] == 1 && isset($_SESSION['user_read_only']) && $_SESSION['user_read_only'] !== "1" ? '
<li onclick="serverAutoChangePwd()"><i class="fa fa-server fa-fw"></i> '.$LANG['update_server_password'].'</li>' : '', '
', isset($SETTINGS['enable_suggestion']) && $SETTINGS['enable_suggestion'] == 1 ? '
<li onclick="OpenDialog(\'div_suggest_change\', \'false\')"><i class="fa fa-random fa-fw"></i> '.$LANG['suggest_password_change'].'</li>' : '', '
</ul>
</li>
</ul>
</div>
</td>
<td valign="middle" style="background-color:rgba(178, 178, 178, 0.13);">
<span id="id_label" style="font-weight:bold;"></span>
</td>
<td style="background-color:rgba(178, 178, 178, 0.13);">
<input type="hidden" id="hid_label" value="', isset($dataItem) ? htmlspecialchars($dataItem['label']) : '', '" />
<div style="float:right; font-family:arial; margin-right:5px;" id="item_viewed_x_times"></div>
<!-- INFO -->
<div class="" style="float:right;margin-right:5px;" id="item_extra_info" title=""></div>
<!-- INFO END -->
</td>
</tr>';
// Line for DESCRIPTION
echo '
<tr class="default_item_field">
<td valign="top" class="td_title" width="180px"> <i class="fa fa-angle-right"></i> '.$LANG['description'].' :</td>
<td colspan="2">
<div id="id_desc" style="font-style:italic;display:inline;"></div><input type="hidden" id="hid_desc" value="', isset($dataItem) ? htmlspecialchars($dataItem['description']) : '', '" />
</td>
</tr>';
// Line for PW
echo '
<tr class="default_item_field">
<td valign="top" class="td_title"> <span class="fa fa-angle-right"></span> '.$LANG['pw'].' :<span id="button_quick_pw_copy" class="fa fa-paste fa-border fa-sm tip" style="cursor:pointer;float:right;margin-right:2px;" title="'.$LANG['item_menu_copy_pw'].'"></span></td>
<td colspan="2">
<div id="id_pw" class="unhide_masked_data" style="float:left; cursor:pointer; width:300px;"></div>
<div id="hid_pw" class="hidden"></div>
<input type="hidden" id="hid_pw_old" value="" />
<input type="hidden" id="pw_shown" value="0" />
</td>
</tr>';
// Line for LOGIN
echo '
<tr class="default_item_field">
<td valign="top" class="td_title"> <i class="fa fa-angle-right"></i> '.$LANG['index_login'].' :<span id="button_quick_login_copy" class="fa fa-paste fa-border fa-sm tip" style="cursor:pointer;float:right;margin-right:2px;" title="'.$LANG['item_menu_copy_login'].'"></span></td>
<td colspan="2">
<div id="id_login" style="float:left;"></div>
<input type="hidden" id="hid_login" value="" />
</td>
</tr>';
// Line for EMAIL
echo '
<tr class="default_item_field">
<td valign="top" class="td_title"> <i class="fa fa-angle-right"></i> '.$LANG['email'].' :</td>
<td colspan="2">
<div id="id_email" style="display:inline;"></div><input type="hidden" id="hid_email" value="" />
</td>
</tr>';
// Line for URL
echo '
<tr class="default_item_field">
<td valign="top" class="td_title"> <i class="fa fa-angle-right"></i> '.$LANG['url'].' :</td>
<td colspan="2">
<div id="id_url" style="display:inline;"></div><input type="hidden" id="hid_url" value="" />
</td>
</tr>';
// Line for FILES
echo '
<tr class="default_item_field">
<td valign="top" class="td_title"> <i class="fa fa-angle-right"></i> '.$LANG['files_&_images'].' :</td>
<td colspan="2">
<div id="id_files" style="display:inline;font-size:11px;"></div><input type="hidden" id="hid_files" />
<div id="dialog_files" style="display: none;">
</div>
</td>
</tr>';
// Line for RESTRICTED TO
echo '
<tr class="default_item_field">
<td valign="top" class="td_title"> <i class="fa fa-angle-right"></i> '.$LANG['restricted_to'].' :</td>
<td colspan="2">
<div id="id_restricted_to" style="display:inline;"></div><input type="hidden" id="hid_restricted_to" /><input type="hidden" id="hid_restricted_to_roles" />
</td>
</tr>';
// Line for TAGS
echo '
<tr class="default_item_field">
<td valign="top" class="td_title"> <i class="fa fa-angle-right"></i> '.$LANG['tags'].' :</td>
<td colspan="2">
<div id="id_tags" style="display:inline;"></div><input type="hidden" id="hid_tags" />
</td>
</tr>';
// Line for KBs
if (isset($SETTINGS['enable_kb']) && $SETTINGS['enable_kb'] == 1) {
echo '
<tr class="default_item_field">
<td valign="top" class="td_title"> <i class="fa fa-angle-right"></i> '.$LANG['kbs'].' :</td>
<td colspan="2">
<div id="id_kbs" style="display:inline;"></div><input type="hidden" id="hid_kbs" />
</td>
</tr>';
}
// lines for FIELDS
if (isset($SETTINGS['item_extra_fields']) && $SETTINGS['item_extra_fields'] == 1) {
foreach ($_SESSION['item_fields'] as $elem) {
$itemCatName = $elem[0];
echo '
<tr class="tr_fields hidden" id="tr_catfield_'.$elem[0].'">
<td valign="top" class="td_title" colspan="3"> <i class="fa fa-angle-right"></i> '.$elem[1].' :</td>
</tr>';
foreach ($elem[2] as $field) {
echo '
<tr class="tr_cf tr_fields hidden" id="cf_tr_'.$field[0].'">
<td valign="top" class="td_title"> <i class="fa fa-caret-right"></i> <i>'.$field[1].'</i> :</td>
<td colspan="2">';
if ($field[4] === '1') {
echo '
<div id="id_field_'.htmlspecialchars($field[0]).'_'.$elem[0].'" style="float:left; width:300px;" class="fields_div unhide_masked_data pointer">
</div><div id="hid_field_'.htmlspecialchars($field[0]).'_'.$elem[0].'" class="fields hidden"></div>';
} else {
echo '
<div id="id_field_'.htmlspecialchars($field[0]).'_'.$elem[0].'" style="display:inline;" class="fields_div"></div>
<div id="hid_field_'.htmlspecialchars($field[0]).'_'.$elem[0].'" class="fields hidden"></div>';
}
echo '
</td>
</tr>';
}
}
}
echo '
</table>
</div>
</div>';
// # NOT ALLOWED
echo '
<div id="item_details_nok" class="hidden" style="width:400px; margin:20px auto 20px auto;">
<div class="ui-state-highlight ui-corner-all" style="padding:10px;">
<i class="fa fa-warning fa-2x mi-red"></i> <b>'.$LANG['not_allowed_to_see_pw'].'</b>
<span id="item_details_nok_restriction_list"></span>
</div>
</div>';
// DATA EXPIRED
echo '
<div id="item_details_expired_full" style="display:none; width:400px; margin:20px auto 20px auto;">
<div class="ui-state-error ui-corner-all" style="padding:10px;">
<i class="fa fa-warning fa-2x mi-red"></i> <b>'.$LANG['pw_is_expired_-_update_it'].'</b>
</div>
</div>';
// # NOT ALLOWED
echo '
<div id="item_details_no_personal_saltkey" style="width:400px; margin:20px auto 20px auto; height:180px;" class="hidden">
<div class="ui-state-highlight ui-corner-all" style="padding:10px;">
<i class="fa fa-warning fa-2x mi-red"></i> <b>'.$LANG['home_personal_saltkey_info'].'</b>
</div>
</div>';
echo '
</div>';
echo '
</div>';
/********************************
* NEW Item Form
*/
echo '
<div id="div_formulaire_saisi" style="display:none;">
<form method="post" name="new_item" action="">
<div id="afficher_visibilite" style="text-align:center;margin-bottom:6px;height:20px;"></div>
<div id="display_title" style="text-align:center;margin-bottom:6px;font-size:17px;font-weight:bold;height:25px;"></div>
<div id="new_show_error" style="text-align:center;margin:2px;display:none;" class="ui-state-error ui-corner-all"></div>
<div id="item_tabs">
<ul>
<li><a href="#tabs-01">'.$LANG['definition'].'</a></li>
<li><a href="#tabs-02">'.$LANG['index_password'].'</a></li>
<li><a href="#tabs-03">'.$LANG['files_&_images'].'</a></li>
', isset($SETTINGS['item_extra_fields']) && $SETTINGS['item_extra_fields'] == 1 ?
'<li id="form_tab_fields"><a href="#tabs-04">'.$LANG['more'].'</a></li>' : '', '
</ul>
<div id="tabs-01">';
// Line for LABEL
echo '
<label for="" class="label_cpm">'.$LANG['label'].' : </label>
<input type="text" name="label" id="label" onchange="checkTitleDuplicate(this.value, \'', isset($SETTINGS['item_duplicate_in_same_folder']) && $SETTINGS['item_duplicate_in_same_folder'] == 1 ? 0 : 1, '\', \'', isset($SETTINGS['duplicate_item']) && $SETTINGS['duplicate_item'] == 1 ? 0 : 1, '\', \'display_title\')" class="input_text text ui-widget-content ui-corner-all" />';
// Line for DESCRIPTION
echo '
<label for="" class="label_cpm">'.$LANG['description'].' : </label>
<span id="desc_span">
<textarea rows="5" cols="60" name="desc" id="desc" class="input_text"></textarea>
</span>
<br />';
// Line for FOLDERS
echo '
<label for="" class="">'.$LANG['group'].' : </label>
<select name="categorie" id="categorie" onchange="RecupComplexite(this.value,0)" style="width:250px; padding:3px;" class="ui-widget-content"><option style="display: none;"></option></select>';
// Line for LOGIN
echo '
<label for="" class="label_cpm" style="margin-top:10px;">'.$LANG['login'].' : </label>
<input type="text" name="item_login" id="item_login" class="input_text text ui-widget-content ui-corner-all" />';
// Line for EMAIL
echo '
<label for="" class="label_cpm">'.$LANG['email'].' : </label>
<input type="text" name="email" id="email" class="input_text text ui-widget-content ui-corner-all" />';
// Line for URL
echo '
<label for="" class="label_cpm">'.$LANG['url'].' : </label>
<input type="text" name="url" id="url" class="input_text text ui-widget-content ui-corner-all" />
</div>';
// Tabs Items N?2
echo '
<div id="tabs-02">';
// Line for folder complexity
echo'
<div style="margin-bottom:10px;" id="expected_complexity">
<label for="" class="form_label_180">'.$LANG['complex_asked'].'</label>
<span id="complex_attendue" style="color:#D04806; margin-left:40px;"></span>
</div>';
// Line for PW
echo '
<label class="label_cpm">'.$LANG['used_pw'].' :
<span id="visible_pw" class="hidden" style="margin-left:10px;font-weight:bold;"></span>
<span id="pw_wait" style="display:none;margin-left:10px;"><span class="fa fa-cog fa-spin fa-1x"></span></span>
</label>
<input type="password" id="pw1" class="input_text text ui-widget-content ui-corner-all" />
<input type="hidden" id="mypassword_complex" value="0" />
<label for="" class="label_cpm">'.$LANG['index_change_pw_confirmation'].' :</label>
<input type="password" name="pw2" id="pw2" class="input_text text ui-widget-content ui-corner-all" />
<div style="font-size:9px; text-align:center; width:100%;">
<span id="custom_pw">
<input type="checkbox" id="pw_lowercase" class="pw_definition" /><label for="pw_lowercase">abc</label>
<input type="checkbox" id="pw_numerics" class="pw_definition" /><label for="pw_numerics">123</label>
<input type="checkbox" id="pw_maj" class="pw_definition" /><label for="pw_maj">ABC</label>
<input type="checkbox" id="pw_symbols" class="pw_definition" /><label for="pw_symbols">@#&</label>
<input type="checkbox" id="pw_secure" checked="checked" /><label for="pw_secure">'.$LANG['secure'].'</label>
<label for="pw_size">'.$LANG['size'].' : </label>
<input type="text" size="2" id="pw_size" value="8" style="font-size:10px;" />
</span>
<span class="fa-stack fa-lg tip" title="'.$LANG['pw_generate'].'" onclick="pwGenerate(\'\')" style="cursor:pointer;">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-cogs fa-stack-1x fa-inverse"></i>
</span>
<span class="fa-stack fa-lg tip" title="'.$LANG['copy'].'" onclick="pwCopy(\'\')" style="cursor:pointer;">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-copy fa-stack-1x fa-inverse"></i>
</span>
<span class="fa-stack fa-lg tip" title="'.$LANG['mask_pw'].'" onclick="showPwd()" style="cursor:pointer;">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-eye fa-stack-1x fa-inverse"></i>
</span>
</div>
<div style="width:100%;">
<div id="pw_strength" style="margin:5px 0 5px 120px;"></div>
</div>';
// Line for RESTRICTED TO
if (isset($SETTINGS['restricted_to']) && $SETTINGS['restricted_to'] == 1) {
echo '
<label for="" class="label_cpm">'.$LANG['restricted_to'].' : </label>
<select name="restricted_to_list" id="restricted_to_list" multiple="multiple" style="width:100%;" class="ui-widget-content"></select>
<input type="hidden" name="restricted_to" id="restricted_to" />
<input type="hidden" size="50" name="restricted_to_roles" id="restricted_to_roles" />
<div style="line-height:10px;"> </div>';
}
// Line for TAGS
echo '
<label for="" class="label_cpm">'.$LANG['tags'].' : </label>
<input type="text" name="item_tags" id="item_tags" class="input_text text ui-widget-content ui-corner-all" />';
// Line for Item modification
echo '
<div style="width:100%;margin:0px 0px 6px 0px;', isset($SETTINGS['anyone_can_modify']) === true && $SETTINGS['anyone_can_modify'] === '1' ? '' : 'display:none;', '">
<input type="checkbox" id="anyone_can_modify"',
isset($SETTINGS['anyone_can_modify_bydefault']) === true
&& $SETTINGS['anyone_can_modify_bydefault'] === '1' ?
' checked="checked"' : '', ' />
<label for="anyone_can_modify">'.$LANG['anyone_can_modify'].'</label>
</div>';
// Line for Item automatically deleted
echo '
<div style="width:100%;margin:0px 0px 6px 0px;', isset($SETTINGS['enable_delete_after_consultation']) && $SETTINGS['enable_delete_after_consultation'] == 1 ? '' : 'display:none;', '">
<input type="checkbox" name="enable_delete_after_consultation" id="enable_delete_after_consultation" />
<label for="enable_delete_after_consultation">'.$LANG['enable_delete_after_consultation'].'</label>
<input type="text" value="1" size="1" id="times_before_deletion" /> '.$LANG['times'].'
'.$LANG['automatic_del_after_date_text'].' <input type="text" value="" class="datepicker" readonly="readonly" size="10" id="deletion_after_date" onchange="$(\'#times_before_deletion\').val(\'\')" />
</div>';
// Line for EMAIL
echo '
<div>
<div style="line-height:10px;"> </div>
<label for="" class="label_cpm">'.$LANG['email_announce'].' : </label>
<select id="annonce_liste_destinataires" multiple="multiple" style="width:100%">';
foreach ($usersList as $user) {
echo '<option value="'.$user['email'].'">'.$user['login'].'</option>';
}
echo '
</select>
</div>';
echo '
</div>';
// Tabs EDIT N?3
echo '
<div id="tabs-03">
<div id="item_upload">
<div id="item_upload_list"></div><br />
<div id="item_upload_wait" class="ui-state-focus ui-corner-all hidden" style="padding:2px;margin:5px 0 5px 0;">'.$LANG['please_wait'].'...</div>
<a id="item_attach_pickfiles" href="#" class="button">'.$LANG['select'].'</a>
<a id="item_attach_uploadfiles" href="#" class="button">'.$LANG['start_upload'].'</a>
<input type="hidden" id="files_number" value="0" />
</div>
</div>';
// Tabs N°4
if (isset($SETTINGS['item_extra_fields']) && $SETTINGS['item_extra_fields'] == 1) {
echo '
<div id="tabs-04">
<div id="item_more">';
// load all categories and fields
foreach ($_SESSION['item_fields'] as $elem) {
$itemCatName = $elem[0];
echo '
<div id="newItemCatName_'.$itemCatName.'" class="newItemCat">
<div style="font-weight:bold;font-size:12px;">
<span class="fa fa-folder-open mi-grey-1"> </span>'.$elem[1];
// Manage template
if (isset($SETTINGS['item_creation_templates']) === true && $SETTINGS['item_creation_templates'] === '1') {
echo '
<input type="checkbox" id="template_'.$elem[0].'" class="item_template template_for_items" data-category-id="'.$elem[0].'"/>
<label for="template_'.$elem[0].'">'.$LANG['main_template'].'</label>';
}
echo '
</div>';
foreach ($elem[2] as $field) {
echo '
<div style="margin:2px 0 2px 15px;">
<span class="fa fa-tag mi-grey-1"> </span>
<label class="cpm_label">'.$field[1];
if ($field[5] === '1') {
echo ' <i class="fa fa-fire mi-red"> </i>';
}
echo '</label>';
if ($field[3] === 'text') {
echo '
<input type="text" id="field_'.$field[0].'_'.$field[2].'" class="item_field input_text text ui-widget-content ui-corner-all" size="40" data-field-type="'.$field[3].'" data-field-is-mandatory="'.$field[5].'">';
} else if ($field[3] === 'textarea') {
echo '
<textarea id="field_'.$field[0].'_'.$field[2].'" class="item_field input_text text ui-widget-content ui-corner-all" colums="40" rows="5" data-field-type="'.$field[3].'" data-field-is-mandatory="'.$field[5].'"></textarea>';
}
echo '
</div>';
}
echo '
</div>';
}
echo '
</div>
</div>';
}
echo '
</div>';
echo '
</form>
<div style="display:none; padding:5px; margin-top:5px; text-align:center;" id="div_formulaire_saisi_info" class="ui-state-default ui-corner-all"></div>
</div>';
/***************************
* Edit Item Form
*/
echo '
<div id="div_formulaire_edition_item" style="display:none;">
<form method="post" name="form_edit" action="">
<div id="edit_afficher_visibilite" style="text-align:center;margin-bottom:6px;height:25px;"></div>
<div id="edit_display_title" style="text-align:center;margin-bottom:6px;font-size:17px;font-weight:bold;height:25px;"></div>
<div id="edit_show_error" style="text-align:center;margin:2px;" class="ui-state-error ui-corner-all hidden"></div>';
// Prepare TABS
echo '
<div id="item_edit_tabs">
<ul>
<li><a href="#tabs-1">'.$LANG['definition'].'</a></li>
<li><a href="#tabs-2">'.$LANG['index_password'].' & '.$LANG['visibility'].'</a></li>
<li><a href="#tabs-3">'.$LANG['files_&_images'].'</a></li>
', isset($SETTINGS['item_extra_fields']) && $SETTINGS['item_extra_fields'] == 1 ?
'<li id="form_edit_tab_fields"><a href="#tabs-4">'.$LANG['more'].'</a></li>' : '', '
</ul>
<div id="tabs-1">
<label for="" class="cpm_label">'.$LANG['label'].' : </label>
<input type="text" size="60" id="edit_label" onchange="checkTitleDuplicate(this.value, \'', isset($SETTINGS['item_duplicate_in_same_folder']) && $SETTINGS['item_duplicate_in_same_folder'] == 1 ? 0 : 1, '\', \'', isset($SETTINGS['duplicate_item']) && $SETTINGS['duplicate_item'] == 1 ? 0 : 1, '\', \'edit_display_title\')" class="input_text text ui-widget-content ui-corner-all" />
<label for="" class="cpm_label">'.$LANG['description'].' <span class="fa fa-eraser" style="cursor:pointer;" onclick="clear_html_tags()"></span> </label>
<span id="edit_desc_span">
<textarea rows="5" cols="70" id="edit_desc" name="edit_desc" class="input_text"></textarea>
</span>';
// Line for FOLDER
echo '
<div style="margin:10px 0px 10px 0px;">
<label for="" class="">'.$LANG['group'].' : </label>
<select id="edit_categorie" onchange="RecupComplexite(this.value,1)" style="width:100%;"><option style="display: none;"></option></select>
</div>';
// Line for LOGIN
echo '
<label for="" class="cpm_label">'.$LANG['login'].' : </label>
<input type="text" id="edit_item_login" class="input_text text ui-widget-content ui-corner-all" />
<label for="" class="cpm_label">'.$LANG['email'].' : </label>
<input type="text" id="edit_email" class="input_text text ui-widget-content ui-corner-all" />
<label for="" class="cpm_label">'.$LANG['url'].' : </label>
<input type="text" id="edit_url" class="input_text text ui-widget-content ui-corner-all" />
</div>';
// TABS edit n?2
echo '
<div id="tabs-2">';
// Line for folder complexity
echo'
<div style="margin-bottom:10px;" id="edit_expected_complexity">
<label for="" class="cpm_label">'.$LANG['complex_asked'].'</label>
<span id="edit_complex_attendue" style="color:#D04806;"></span>
</div>';
echo '
<div style="line-height:20px;">
<label for="" class="label_cpm">'.$LANG['used_pw'].' :
<span id="edit_visible_pw" style="margin-left:10px;font-weight:bold; padding:2px;" class="ui-corner-all ui-state-default hidden"></span>
<span id="edit_pw_wait" style="margin-left:10px;" class="hidden"><span class="fa fa-cog fa-spin fa-1x"></span></span>
</label>
<input type="password" id="edit_pw1" class="input_text text ui-widget-content ui-corner-all" style="width:390px;" />
<span class="fa fa-history tip" style="cursor:pointer;" id="edit_past_pwds" onclick="showPasswordsHistory()"></span>
<div style="display:none; padding:3px; width:390px; font-weight:normal; font-size:11px; font-family:italic;" id="edit_past_pwds_div" class="ui-corner-all ui-state-default"></div>
<input type="hidden" id="edit_mypassword_complex" value="0" />
<label for="" class="cpm_label">'.$LANG['confirm'].' : </label>
<input type="password" id="edit_pw2" class="input_text text ui-widget-content ui-corner-all" style="width:390px;" />
</div>
<div style="font-size:9px; text-align:center; width:100%;">
<span id="edit_custom_pw">
<input type="checkbox" id="edit_pw_lowercase" class="pw_definition" /><label for="edit_pw_lowercase">abc</label>
<input type="checkbox" id="edit_pw_numerics" class="pw_definition" /><label for="edit_pw_numerics">123</label>
<input type="checkbox" id="edit_pw_maj" class="pw_definition" /><label for="edit_pw_maj">ABC</label>
<input type="checkbox" id="edit_pw_symbols" class="pw_definition" /><label for="edit_pw_symbols">@#&</label>
<input type="checkbox" id="edit_pw_secure" class="pw_definition" checked="checked" /><label for="edit_pw_secure">'.$LANG['secure'].'</label>
<label for="edit_pw_size">'.$LANG['size'].' : </label>
<input type="text" size="2" id="edit_pw_size" value="8" style="font-size:10px;" />
</span>
<span class="fa-stack fa-lg tip" title="'.$LANG['pw_generate'].'" onclick="pwGenerate(\'edit\')" style="cursor:pointer;">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-cogs fa-stack-1x fa-inverse"></i>
</span>
<span class="fa-stack fa-lg tip" title="'.$LANG['copy'].'" onclick="pwCopy(\'edit\')" style="cursor:pointer;">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-copy fa-stack-1x fa-inverse"></i>
</span>
<span class="fa-stack fa-lg tip" title="'.$LANG['mask_pw'].'" onclick="ShowPasswords_EditForm()" style="cursor:pointer;">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-eye fa-stack-1x fa-inverse"></i>
</span>
</div>
<div style="width:100%;">
<div id="edit_pw_strength" style="margin:5px 0 5px 120px;"></div>
</div>';
if (isset($SETTINGS['restricted_to']) && $SETTINGS['restricted_to'] == 1) {
echo '
<div id="div_editRestricted">
<label for="" class="label_cpm">'.$LANG['restricted_to'].' : </label>
<select name="edit_restricted_to_list" id="edit_restricted_to_list" multiple="multiple" style="width:100%"></select>
<input type="hidden" size="50" name="edit_restricted_to" id="edit_restricted_to" />
<input type="hidden" size="50" name="edit_restricted_to_roles" id="edit_restricted_to_roles" />
<div style="line-height:10px;"> </div>
</div>';
}
echo '
<label for="" class="cpm_label">'.$LANG['tags'].' : </label>
<input type="text" size="50" name="edit_tags" id="edit_tags" class="input_text text ui-widget-content ui-corner-all" />';
// Line for Item modification
echo '
<div style="width:100%;margin:0px 0px 6px 0px;', isset($SETTINGS['anyone_can_modify']) === true && $SETTINGS['anyone_can_modify'] === '1' ? '' : 'display:none;', '">
<input type="checkbox" id="edit_anyone_can_modify"',
isset($SETTINGS['anyone_can_modify_bydefault']) === true
&& $SETTINGS['anyone_can_modify_bydefault'] === '1' ?
' checked="checked"' : '', ' />
<label for="edit_anyone_can_modify">'.$LANG['anyone_can_modify'].'</label>
</div>';
// Line for Item automatically deleted
echo '
<div id="edit_to_be_deleted" style="width:100%;margin:0px 0px 6px 0px;', isset($SETTINGS['enable_delete_after_consultation']) && $SETTINGS['enable_delete_after_consultation'] == 1 ? '' : 'display:none;', '">
<input type="checkbox" name="edit_enable_delete_after_consultation" id="edit_enable_delete_after_consultation" />
<label for="edit_enable_delete_after_consultation">'.$LANG['enable_delete_after_consultation'].'</label>
<input type="text" value="" size="1" id="edit_times_before_deletion" onchange="$(\'#edit_deletion_after_date\').val(\'\')" /> '.$LANG['times'].'
'.$LANG['automatic_del_after_date_text'].' <input type="text" value="" class="datepicker" readonly="readonly" size="10" id="edit_deletion_after_date" onchange="$(\'#edit_times_before_deletion\').val(\'\')" />
</div>';
echo '
<div id="div_anounce_change_by_email">
<div style="line-height:10px;"> </div>
<label for="" class="label_cpm">'.$LANG['email_announce'].' : </label>
<select id="edit_annonce_liste_destinataires" multiple="multiple" style="width:100%">';
foreach ($usersList as $user) {
echo '<option value="'.$user['email'].'">'.$user['login'].'</option>';
}
echo '
</select>
</div>';
echo '
</div>';
// Tab EDIT N°3
echo '
<div id="tabs-3">
<div style="font-weight:bold;font-size:12px;">
<span class="fa fa-folder-open mi-grey-1"> </span>'.$LANG['uploaded_files'].'
</div>
<div id="item_edit_list_files" style="margin-left:5px;"></div>
<div style="margin-top:10px;font-weight:bold;font-size:12px;">
<span class="fa fa-folder-open mi-grey-1"> </span>'.$LANG['upload_files'].'
</div>
<div id="item_edit_upload">
<div id="item_edit_upload_list"></div><br />
<div id="item_edit_upload_wait" class="ui-state-focus ui-corner-all hidden" style="padding:2px;margin:5px 0 5px 0;">'.$LANG['please_wait'].'...</div>
<a id="item_edit_attach_pickfiles" href="#" class="button">'.$LANG['select'].'</a>
<a id="item_edit_attach_uploadfiles" href="#sd" class="button">'.$LANG['start_upload'].'</a>
<input type="hidden" id="edit_files_number" value="0" />
</div>
</div>';
// Tabs EDIT N°4 -> Categories
if (isset($SETTINGS['item_extra_fields']) && $SETTINGS['item_extra_fields'] == 1) {
$templateID = -1;
echo '
<div id="tabs-4">
<div id="edit_item_more">';
// load all categories and fields
foreach ($_SESSION['item_fields'] as $elem) {
echo '
<div class="editItemCat" id="editItemCatName_'.$elem[0].'">
<div style="font-weight:bold;font-size:12px;">
<span class="fa fa-folder-open mi-grey-1"> </span>'.$elem[1];
// Manage template
if (isset($SETTINGS['item_creation_templates']) === true && $SETTINGS['item_creation_templates'] === '1') {
echo '
<div style="display:inline; float:right; font-weight:normal; font-style: italic;">
<input type="checkbox" id="template_edit_'.$elem[0].'" class="item_edit_template template_for_items" data-category-id="'.$elem[0].'"/>
<label for="template_edit_'.$elem[0].'" class="pointer">'.$LANG['main_template'].'</label>
</div>';
$templateID = $elem[0];
}
echo '
</div>';
foreach ($elem[2] as $field) {
echo '
<div style="margin:2px 0 2px 15px;">
<span class="fa fa-tag mi-grey-1"> </span>
<label class="cpm_label">'.$field[1];
if ($field[5] === '1') {
echo ' <i class="fa fa-fire mi-red"> </i>';
}
echo '</label>';
if ($field[3] === 'text') {
echo '
<input type="text" id="edit_field_'.$field[0].'_'.$elem[0].'" class="edit_item_field input_text text ui-widget-content ui-corner-all" size="40" data-field-type="'.$field[3].'" data-field-masked="'.$field[4].'" data-field-is-mandatory="'.$field[5].'" data-template-id="'.$templateID.'">';
} else if ($field[3] === 'textarea') {
echo '
<textarea id="edit_field_'.$field[0].'_'.$elem[0].'" class="edit_item_field input_text text ui-widget-content ui-corner-all" colums="40" rows="5" data-field-type="'.$field["3"].'" data-field-masked="'.$field[4].'" data-field-is-mandatory="'.$field[5].'" data-template-id="'.$templateID.'"></textarea>';
}
echo '
</div>';
}
echo '
</div>';
}
echo '
</div>
</div>
</div>';
}
echo '
<div style="padding:5px;" id="div_formulaire_edition_item_info" class="ui-state-default ui-corner-all hidden"></div>
</div>
</form>
</div>';
/*
* ADD NEW FOLDER form
*/
echo '
<div id="div_ajout_rep" style="display:none;">
<div id="new_rep_show_error" style="text-align:center;margin:2px;" class="ui-state-error ui-corner-all"></div>
<table>
<tr>
<td>'.$LANG['label'].' : </td>
<td><input type="text" id="new_rep_titre" style="width:242px; padding:3px;" class="ui-widget-content" /></td>
</tr>
<tr>
<td>'.$LANG['sub_group_of'].' : </td>
<td><select id="new_rep_groupe" style="width:250px; padding:3px;" class="ui-widget-content">
', (isset($SETTINGS['can_create_root_folder']) && $SETTINGS['can_create_root_folder'] == 1 || $_SESSION['user_manager'] === "1") ? '<option value="0">'.$LANG['root'].'</option>' : '', '
</select></td>
</tr>
<tr>
<td>'.$LANG['complex_asked'].' : </td>
<td><select id="new_rep_complexite" style="width:250px; padding:3px;" class="ui-widget-content">';
foreach ($SETTINGS_EXT['pwComplexity'] as $complex) {
echo '<option value="'.$complex[0].'">'.$complex[1].'</option>';
}
echo '
</select>
</td>
</tr>';
echo '
</table>
<div id="add_folder_loader" style="display:none;text-align:center;margin-top:20px;">
<i class="fa fa-cog fa-spin"></i> '.$LANG['please_wait'].'...
</div>
</div>';
// Formulaire EDITER REPERTORIE
echo '
<div id="div_editer_rep" style="display:none;">
<div id="edit_rep_show_error" style="text-align:center;margin:2px;display:none;" class="ui-state-error ui-corner-all"></div>
<table>
<tr>
<td>'.$LANG['new_label'].' : </td>
<td><input type="text" id="edit_folder_title" style="width:242px; padding:3px;" class="ui-widget-content" /></td>
</tr>
<tr>
<td>'.$LANG['group_select'].' : </td>
<td><select id="edit_folder_folder" style="width:250px; padding:3px;" class="ui-widget-content"></select></td>
</tr>
<tr>
<td>'.$LANG['complex_asked'].' : </td>
<td><select id="edit_folder_complexity" style="width:250px; padding:3px;" class="ui-widget-content">
<option value="">---</option>';
foreach ($SETTINGS_EXT['pwComplexity'] as $complex) {
echo '<option value="'.$complex[0].'">'.$complex[1].'</option>';
}
echo '
</select>
</td>
</tr>
</table>
<div id="edit_folder_loader" style="display:none;text-align:center;margin-top:20px;">
<i class="fa fa-cog fa-spin"></i> '.$LANG['please_wait'].'...
</div>
</div>';
// Formulaire MOVE FOLDER
echo '
<div id="div_move_folder" style="display:none;">
<div id="move_rep_show_error" style="text-align:center;margin:2px;" class="ui-state-error ui-corner-all hidden"></div>
<div style="text-align:center;margin-top:20px;">
<p>'.$LANG['folder_will_be_moved_below'].'</p>
<div>
<select id="move_folder_id" style="width:250px; padding:3px;" class="ui-widget-content">
</select>
</div>
</div>
<div id="move_folder_loader" style="text-align:center;margin-top:20px;" class="hidden">
<i class="fa fa-cog fa-spin"></i> '.$LANG['please_wait'].'...
</div>
</div>';
// Formulaire COPY FOLDER
echo '
<div id="div_copy_folder" style="display:none;">
<div id="div_copy_folder_info" class="ui-widget-content ui-state-highlight ui-corner-all" style="padding:5px;"><span class="fa fa-info-circle fa-2x"></span> '.$LANG['copy_folder_info'].'</div>
<div style="margin:10px 0 0 0;">
<label style="float:left; width:150px;">'.$LANG['copy_folder_source'].'</label>
<select id="copy_folder_source_id" style="width:300px; padding:3px;" class="ui-widget-content"></select>
</div>
<div style="margin:10px 0 0 0;">
<label style="float:left; width:150px;">'.$LANG['copy_folder_destination'].'</label>
<select id="copy_folder_destination_id" style="width:300px; padding:3px;" class="ui-widget-content"></select>
</div>
<div id="div_copy_folder_msg" style="text-align:center;padding:5px;display:none; margin-top:10px; font-size:14px;" class="ui-corner-all"></div>
</div>';
// Formulaire SUPPRIMER REPERTORIE
echo '
<div id="div_supprimer_rep" style="display:none;">
<table>
<tr>
<td>'.$LANG['group_select'].' : </td>
<td><select id="delete_rep_groupe" style="width:250px; padding:3px;" class="ui-widget-content">
</select></td>
</tr>
<tr>
<td colspan="2">
<div id="delete_rep_groupe_validate_div" class="ui-state-default ui-corner-all" style="padding:5px; margin-top:10px;">
<input type="checkbox" id="delete_rep_groupe_validate"><label for="delete_rep_groupe_validate">'.$LANG['confirm_delete_group'].'</label>
</div>
</td>
</tr>
</table>
<div id="del_rep_show_error" style="text-align:center;padding:5px;display:none;margin-top:10px;" class="ui-state-error ui-corner-all"></div>
<div id="del_folder_loader" style="display:none;text-align:center;margin-top:15px;">
<i class="fa fa-cog fa-spin"></i> '.$LANG['please_wait'].'...
</div>
</div>';
// SUPPRIMER UN ELEMENT
echo '
<div id="div_del_item" style="display:none;">
<h2 id="div_del_item_selection"></h2>
<div style="text-align:center;padding:8px;" class="ui-state-error ui-corner-all">
<span class="fa fa-warning fa-2x"></span> '.$LANG['confirm_deletion'].'
</div>
</div>';
// DIALOG INFORM USER THAT LINK IS COPIED
echo '
<div id="div_item_copied" style="display:none;">
<div style="text-align:center;padding:8px;" class="ui-state-focus ui-corner-all">
<span class="fa fa-info fa-2x"></span> '.$LANG['link_is_copied'].'
</div>
<div id="div_display_link"></div>
</div>';
// DIALOG TO WHAT FOLDER COPYING ITEM
echo '
<div id="div_copy_item_to_folder" style="display:none;">
<h2 id="div_copy_item_to_folder_item"></h2>
<div style="text-align:center;">
<div>'.$LANG['item_copy_to_folder'].'</div>
<div style="margin:10px;">
<select id="copy_in_folder" style="width:300px;">
', (isset($_SESSION['can_create_root_folder']) && $_SESSION['can_create_root_folder'] == 1) ? '<option value="0">'.$LANG['root'].'</option>' : '', ''.
'</select>
</div>
</div>
<div id="copy_item_to_folder_show_error" style="text-align:center;margin:2px;display:none; padding:3px;" class="ui-state-error ui-corner-all"></div>
<div style="height:20px;text-align:center;margin:2px;" id="copy_item_info" class=""></div>
</div>';
// DIALOG FOR HISTORY OF ITEM
echo '
<div id="div_item_history" style="display:none;">
<div id="item_history_log"></div>
', (isset($SETTINGS['insert_manual_entry_item_history']) && $SETTINGS['insert_manual_entry_item_history'] == 1) ?
'<div id="new_history_entry_form" style="display:none; margin-top:10px;"><hr>
<div id="div_add_history_entry">
<div id="item_history_log_error"></div>
'.$LANG['label'].' <input type="text" id="add_history_entry_label" size="40" />
<span class="button" style="margin-top:6px;" onclick="manage_history_entry(\'add_entry\',\'\')">'.$LANG['add_history_entry'].'</div>
</div>
</div>'
:'', '
</div>';