-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathajax_erp_moodle.js
263 lines (193 loc) · 7.86 KB
/
ajax_erp_moodle.js
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
/*
// MUDANÇA DA SETA
$("#page-header .page-header-headings").hide();
$(".larrow").html('<spam class="awe5"> <i class="fas fa-angle-double-left"></i></spam>');
$(".rarrow").html('<spam class="awe5"> <i class="fas fa-angle-double-right"></i></spam>');
function consultamatricula(){
matricula = $('#matricula').val();
$.ajax({
url: 'blocks/fametroapresentacao/consulta_status.php',
type: 'GET',
data: {matricula: matricula},
success: function (response) {
//$("#aceitemodal").empty();
$("#retorno_consulta_matricula").html('');
$("#retorno_consulta_matricula").html(response);
//console.log(response);
//$('#formulario_consulta').hide();
}, error: function () {
alert('Digitar apenas os números da matrÃcula!');
}
});
}
*/
// PÃGINA DE LOGIN
$(document).ready(function(){
var pathname = window.location.pathname;
console.log(pathname);
if(pathname == '/'){
/*
// insere no header da frontpage
$.ajax({
url: 'https://erpead.fametro.edu.br/custom/frontheader.php',
type: 'POST',
crossDomain : true,
success: function (response) {
$("#page-header > div > div > div").html(response);
console.log(response);
}, error: function () {
}
});
// insere no header da frontpage
$.ajax({
url: 'https://erpead.fametro.edu.br/custom/conteudo.php',
type: 'POST',
crossDomain : true,
success: function (response) {
$("#page-site-index #region-main ").empty();
$("#page-site-index #region-main ").html(response);
$("#page-site-index #region-main ").show();
//console.log(response);
}, error: function () {
}
});
*/
}
/*
$('#region-main > div > div.row.justify-content-center > div > div > div > div > div > div:nth-child(1)').removeClass("col-md-5");
$('#region-main > div > div.row.justify-content-center > div > div > div > div > div > div').addClass("col-md-12");
$('#region-main > div > div.row.justify-content-center > div > div > div>h2').removeClass("text-center");
$('#region-main > div > div.row').removeClass("justify-content-center");
$('#region-main > div > div.row').addClass("flex-row-reverse");
$('#region-main > div > div.row > div > div > div>h2').html('ACESSO AO AMBIENTE VIRTUAL DE APRENDIZAGEM - AVA');
*/
// VERIFICA QUAL AVA ESTÃ OPRANDO
var url = window.location.href;
var surl = url.split('.');
var ambiente = surl[0].slice(8);
console.log(ambiente);
/*
// ESCONDE LINK PARA BAIXAR O APLICATIVO
$("#page-footer > div > a").hide();
// ESCONDE A DATA DE MODIFICAÇÃO
$(".modified").hide();
// ACRECENTAS ANIMAÇÕES
// HEADER DA PAGE
$("#page-header").addClass("animated fadeIn");
//$("#region-main").addClass("animated fadeIn");
*/
//ACRESCENTA IMAGEM NA FRENTE DO HEADER
/*$(".page-header-headings h1").prepend('<img src="https://erpead.fametro.edu.br/custom/svg/icone001.svg" class="svg-header" />');
if ($('h2:first-of-type').text().indexOf('Videoaula') != -1 || $('h2:first-of-type').text().indexOf('VIDEOAULA') != -1){
$("h2:first-of-type").prepend('<img src="https://erpead.fametro.edu.br/custom/svg/2332749-online-education/2332749-online-education/svg/105-video.svg" class="svg-header-h2" />');
}*/
// ##############################################################2019 rotinas de carregamento
caminho ='https://erpead.fametro.edu.br/custom/';
// CARREGAR AVISOS
$( ".Avisos" ).each(function( index ) {
var moodlecode = $(this).data("moodlecode");
var modalidade= $(this).data("modalidade");
var caminhocompleto = caminho+$.trim("ajax_moodle_2020.php?&acao=avisos&id="+moodlecode+"&nome="+modalidade+"&ambiente="+ambiente);
//console.log(caminhocompleto);
$(this).load(caminhocompleto);
});
// CARREGAR PAGE
$( ".Ajax" ).each(function( index ) {
var moodlecode = $(this).data("moodlecode");
var PageTipo = $(this).data("pagetipo");
var PageNome = $(this).data("pagenome");
var Aluno = $(this).data("aluno");
//console.log(moodlecode);
//console.log(PageTipo);
// console.log(PageNome);
var caminhocompleto = caminho+$.trim("ajax_moodle_2020.php?&acao="+PageTipo+"&id="+moodlecode+"&nome="+PageNome+"&ambiente="+ambiente+"&aluno="+Aluno);
//console.log(caminhocompleto);
$(this).load(caminhocompleto);
});
// CARREGAR PAGE
$( ".Roteiro" ).each(function( index ) {
var moodlecode = $(this).data("moodlecode");
var PageTipo = $(this).data("pagetipo");
var PageNome = $(this).data("pagenome");
var Aluno = $(this).data("aluno");
var Modalidade = $(this).data("modalidade");
//console.log(moodlecode);
//console.log(PageTipo);
// console.log(PageNome);
var caminhocompleto = caminho+$.trim("ajax_moodle_2020.php?&acao="+PageTipo+"&id="+moodlecode+"&nome="+PageNome+"&ambiente="+ambiente+"&aluno="+Aluno+"&modalidade="+Modalidade);
//console.log(caminhocompleto);
$(this).load(caminhocompleto);
});
// CARREGAR VIDEO EM BLOCO
$( ".AjaxVideo" ).each(function( index ) {
var moodlecode = $(this).data("moodlecode");
var VideoNome = $(this).data("videonome");
//var PageNome = $(this).data("pagenome");
//console.log(moodlecode);
//console.log(VideoNome);
//console.log(PageNome);
var caminhocompleto = caminho+$.trim("ajax_moodle_2020.php?&acao=videobloco&id="+moodlecode+"&nome="+VideoNome+"&ambiente="+ambiente);
console.log(caminhocompleto);
$(this).load(caminhocompleto);
});
// CARREGAR COMPLEMENTOS EM BLOCOS
$( ".AjaxComplemento" ).each(function( index ) {
var moodlecode = $(this).data("moodlecode");
var Complemento = $(this).data("complemento");
//var PageNome = $(this).data("pagenome");
//console.log(moodlecode);
//console.log(VideoNome);
//console.log(PageNome);
var caminhocompleto = caminho+$.trim("ajax_moodle_2020.php?&acao=complementobloco&id="+moodlecode+"&nome="+Complemento+"&ambiente="+ambiente);
//console.log(caminhocompleto);
$(this).load(caminhocompleto);
});
// CARREGA OS TEXTOS DO SISTEMA DE INICIO
$( ".TextoIniciando" ).each(function( index ) {
var moodlecode = $(this).data("moodlecode");
var PageTipo = $(this).data("pagetipo");
var PageNome = $(this).data("pagenome");
var Nome = $( this ).data("iniciando")
//console.log(moodlecode);
//console.log(PageTipo);
// console.log(PageNome);
var caminhocompleto = caminho+$.trim("ajax_moodle_2020.php?&acao=iniciando&id="+moodlecode+"&nome="+Nome+"&ambiente="+ambiente);
console.log(caminhocompleto);
$(this).load(caminhocompleto);
});
// CARREGA O SUPORTE RM NO MODAL PAINEL
$( ".SuporteRmModal" ).each(function( index ) {
var moodlecode = $(this).data("moodlecode");
var PageTipo = $(this).data("pagetipo");
var PageNome = $(this).data("pagenome");
var Aluno = $( this ).data("aluno");
//console.log(moodlecode);
//console.log(PageTipo);
//console.log(PageNome);
var caminhocompleto = caminho+$.trim("ajax_moodle_2020.php?&acao=statusrm&id="+moodlecode+"&nome="+PageNome+"&ambiente="+ambiente+"&aluno="+Aluno);
console.log(caminhocompleto);
$("#block-region-content").load(caminhocompleto);
});
});
/*
// MUDANÇA DA SETA$
$(".larrow").html('<spam class="awe5"> <i class="fas fa-angle-double-left"></i></spam>');
$(".rarrow").html('<spam class="awe5"> <i class="fas fa-angle-double-right"></i></spam>');
*/
function consultamatricula(){
matricula = $('#matricula').val();
$.ajax({
url: 'blocks/fametroapresentacao/consulta_status.php',
type: 'GET',
data: {matricula: matricula},
success: function (response) {
//$("#aceitemodal").empty();
$("#retorno_consulta_matricula").html('');
$("#retorno_consulta_matricula").html(response);
//console.log(response);
//$('#formulario_consulta').hide();
}, error: function () {
alert('Digitar apenas os números da matrÃcula!');
}
});
}