Subversion-Projekte lars-tiefland.ci

Revision

Revision 1058 | Revision 1088 | Zur aktuellen Revision | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
875 lars 1
    $(function(){
2
        $('.add_image').button({
3
            icons:{
4
                primary:'ui-icon-plus'
5
            }
6
        }).click(add_images);
7
        $('.add_folder').button({
8
            icons:{
9
                primary:'ui-icon-plus'
10
            }
11
        }).click(add_folder);
12
        $('.del_image').button({
13
            icons:{
14
                primary:'ui-icon-trash'
15
            }
16
        });
17
 
18
        $('.search').button({
19
            icons:{
20
                primary: "ui-icon-search"
21
            }
22
        }).click(search);
23
 
24
        $('#upload_dlg .nav').css("cursor","pointer").click(nav);
25
 
26
        function nav()
27
        {
28
            f_name=$(this).attr("data-fname");
29
            l_id=$('#lID').val();
30
            l_type=$('#lType').val();
31
            $('#upload_dlg').load("/Online-Shop/upload.php?folder="+f_name+"&l_type="+l_type+"&l_id="+l_id);
32
        }
33
 
34
        $('#upload_dlg').dialog({
35
            autoOpen: false,
36
            modal:true,
37
            width:"95%",
38
            height:600,
39
            resizable:false,
40
            close:function(){
41
                l_id=$('#lID').val();
42
                l_type=$('#lType').val();
43
                $('#bildverwaltung').load("/Online-Shop/bilder.php?l_id="+l_id+"&l_type="+l_type);
44
            },
45
            buttons:{
46
                "Abbrechen":function()
47
                {
48
                    l_id=$('#lID').val();
49
                    l_type=$('#lType').val();
50
                    $('#bildverwaltung').load("/Online-Shop/bilder.php?l_id="+l_id+"&l_type="+l_type);
878 lars 51
                    $('#upload_dlg').dialog("close");
875 lars 52
                }
53
            }
54
        });
55
 
56
        $('#folder_dialog').dialog({
57
            autoOpen:false,
58
            modal:true,
59
            width:800,
60
            resizable:false,
61
            buttons:{
62
                "Ordner anlegen":function(){
907 lars 63
                    $.post("/backend/toolbox/mkdir/",$('#create_folder').serializeArray(),function(html){
875 lars 64
                        //alert(html);
65
                    });
878 lars 66
                    $('#folder_dialog').dialog("close");
875 lars 67
                },
68
                "Abbruch": function(){
878 lars 69
                    $('#folder_dialog').dialog("close");
875 lars 70
                }
71
            }
72
        })
73
 
74
        function search(e)
75
        {
76
            e.preventDefault();
77
            $('#search_media').submit();
78
        }
79
 
80
        function add_images(e)
81
        {
82
            e.preventDefault();
83
            $('#upload_dlg').dialog('open');
84
        }
85
 
86
        function add_folder(e)
87
        {
88
            e.preventDefault();
89
            $('#folder_dialog').dialog("open");
90
        }
91
        $('#taskResult').dialog({
92
            width:800,
93
            autoOpen:false,
94
            modal:true,
95
            resizable:false,
96
            buttons:[{
97
                text:"OK",
98
                icons: {
99
                    primary: "ui-icon-check"
100
                },
101
                showText: false,
102
                click:function()
103
                {
104
                    $('#taskResult').dialog("close");
945 lars 105
                    document.location.reload();
875 lars 106
                }
107
            }]
108
        });
109
        $('#taskForm').dialog({
110
            width:800,
111
            //height:600,
112
            autoOpen:false,
113
            modal:true,
114
            resizable:false,
115
            buttons:[{
116
                text:"speichern",
948 lars 117
                icon: "ui-icon-check",
118
                showLabel: false,
875 lars 119
                click:function()
120
                {
942 lars 121
                    $('#taskResult').load("/backend/scheduler/save/",$('#scheduler_form').serializeArray(),function(){
875 lars 122
                        $('#taskResult').dialog("open");
123
                    })
124
                    $('#taskForm').dialog("close");
125
                }
126
            },
127
            {
128
                text:"verwerfen",
949 lars 129
				icon:"ui-icon-close",
130
                showLabel: false,
875 lars 131
                click:function(){
878 lars 132
                    $('#taskForm').dialog("close");
875 lars 133
                }
134
            }]
135
        })
136
/*        $( "#taskForm" ).dialog({
137
          buttons: [
138
            {
139
              text: "speicehrn",
140
              icons: {
141
                primary: "ui-icon-heart"
142
              },
143
              click: function() {
144
                $( this ).dialog( "close" );
145
              }
146
 
147
              // Uncommenting the following line would hide the text,
148
              // resulting in the label being used as a tooltip
149
            }
150
          ]
151
        });*/
152
        $('.task_edit').click(edit_task);
153
        $('.newTask').click(newTask);
966 lars 154
 
155
        $('#userResult').dialog({
156
            width:800,
157
            autoOpen:false,
158
            modal:true,
159
            resizable:false,
160
            buttons:[{
161
                text:"OK",
162
                icons: {
163
                    primary: "ui-icon-check"
164
                },
165
                showText: false,
166
                click:function()
167
                {
168
                    $('#userResult').dialog("close");
169
                    document.location.reload();
170
                }
171
            }]
172
        });
173
        $('#userForm').dialog({
174
            width:800,
175
            //height:600,
176
            autoOpen:false,
177
            modal:true,
178
            resizable:false,
179
            buttons:[{
180
                text:"speichern",
985 lars 181
                icon: {
182
                	icon:"ui-icon-check"
183
				},
966 lars 184
                showLabel: false,
185
                click:function()
186
                {
1053 lars 187
                    $.post("/backend/user/save/",$('#user_form').serializeArray(),function(erg){
188
                    	ret=erg.split('|');
189
                    	if(ret[0]==0)
190
                    	{
1069 lars 191
		                    $('#userForm').dialog("close");
1053 lars 192
    	                    $('#userResult').dialog("open");
193
                    	}
194
                    	else
195
                    	{
196
                    		$('#userForm').html(ret[1]);
197
                    	}
966 lars 198
                    })
199
                }
200
            },
201
            {
202
                text:"verwerfen",
990 lars 203
				icon:{
204
					icon: "ui-icon-close"
205
				},
966 lars 206
                showLabel: false,
207
                click:function(){
208
                    $('#userForm').dialog("close");
209
                }
210
            }]
211
        })
1020 lars 212
        $('#userRechteForm').dialog({
213
            width:800,
1042 lars 214
            height:600,
1020 lars 215
            autoOpen:false,
216
            modal:true,
217
            resizable:false,
218
            buttons:[{
219
                text:"speichern",
220
                icon: {
221
                	icon:"ui-icon-check"
222
				},
223
                showLabel: false,
224
                click:function()
225
                {
1048 lars 226
                    $.post("/backend/user_rechte/save/",$('#user_form').serializeArray(),function(erg){
227
                    	ret=erg.split('|');
1051 lars 228
                    	alert(erg)
1048 lars 229
                    	if(ret[0]==0)
230
                    	{
231
	                        $('#userResult').dialog("open");
232
		                    $('#userRechteForm').dialog("close");
233
                    	}
234
                    	else
235
                    	{
236
                    		$('#userRechteForm').html(ret[1]);
237
                    	}
1020 lars 238
                    })
239
                }
240
            },
241
            {
242
                text:"verwerfen",
243
				icon:{
244
					icon: "ui-icon-close"
245
				},
246
                showLabel: false,
247
                click:function(){
248
                    $('#userRechteForm').dialog("close");
249
                }
250
            }]
251
        })
966 lars 252
        $('.user_edit').click(edit_user);
1020 lars 253
        $('.user_rights').click(user_rights);
966 lars 254
        $('.new_user').click(newUser);
875 lars 255
    });
256
 
257
    function newTask(e)
258
    {
259
        e.preventDefault();
907 lars 260
        url="/backend/scheduler/edit/";
875 lars 261
        $.get(url,function(html)
262
        {
263
            $('#taskForm').html(html).dialog("open");
264
        });
265
    }
266
    function edit_task(e)
267
    {
268
        e.preventDefault();
269
        tIdArr=$(this).attr("id").split("_");
270
        tId=tIdArr[1];
907 lars 271
        url="/backend/scheduler/edit/"+tId;
875 lars 272
        $.get(url,function(html)
273
        {
274
            $('#taskForm').html(html).dialog("open");
275
        });
276
    }
966 lars 277
 
278
    function newUser(e)
279
    {
280
        e.preventDefault();
281
        url="/backend/user/edit/";
282
        $.get(url,function(html)
283
        {
284
            $('#userForm').html(html).dialog("open");
285
        });
286
    }
287
    function edit_user(e)
288
    {
289
        e.preventDefault();
290
        tIdArr=$(this).attr("id").split("_");
291
        tId=tIdArr[1];
292
        url="/backend/user/edit/"+tId;
293
        $.get(url,function(html)
294
        {
295
            $('#userForm').html(html).dialog("open");
296
        });
297
    }
1020 lars 298
    function user_rights(e)
299
    {
300
        e.preventDefault();
301
        tIdArr=$(this).attr("id").split("_");
302
        tId=tIdArr[1];
303
        url="/backend/user_rechte/edit/"+tId;
304
        $.get(url,function(html)
305
        {
306
            $('#userRechteForm').html(html).dialog("open");
307
        });
308
    }