Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16935 | Rev 16993 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16935 Rev 16992
Línea 9... Línea 9...
9
    'quiz_id' => $quiz_uuid,
9
    'quiz_id' => $quiz_uuid,
10
];
10
];
Línea 11... Línea 11...
11
 
11
 
12
$routeAdd       = $this->url('microlearning/content/quizzes/questions/add', $params);
12
$routeAdd       = $this->url('microlearning/content/quizzes/questions/add', $params);
-
 
13
$routeDatatable  = $this->url('microlearning/content/quizzes/questions', $params);
-
 
14
$routeRegresar = $this->url('microlearning/content/quizzes');
Línea 13... Línea 15...
13
$routeDatatable  = $this->url('microlearning/content/quizzes/questions', $params);
15
 
14
 
16
 
15
$allowAdd       = $acl->isAllowed($roleName, 'microlearning/content/quizzes/questions/add') ? 1 : 0;
17
$allowAdd       = $acl->isAllowed($roleName, 'microlearning/content/quizzes/questions/add') ? 1 : 0;
16
$allowEdit      = $acl->isAllowed($roleName, 'microlearning/content/quizzes/questions/edit') ? 1 : 0;
18
$allowEdit      = $acl->isAllowed($roleName, 'microlearning/content/quizzes/questions/edit') ? 1 : 0;
Línea 259... Línea 261...
259
        invalidHandler: function(form, validator) {
261
        invalidHandler: function(form, validator) {
Línea 260... Línea 262...
260
            
262
            
261
        }
263
        }
Línea -... Línea 264...
-
 
264
    });
-
 
265
 
-
 
266
    $('body').on('click', 'button.btn-back', function(e) { 
-
 
267
        e.preventDefault();
-
 
268
 
-
 
269
        window.location.href = '$routeRegresar';
-
 
270
 
262
    });
271
    });
263
 
272
 
Línea 264... Línea 273...
264
    $('body').on('click', 'button.btn-add', function(e) {
273
    $('body').on('click', 'button.btn-add', function(e) {
Línea 426... Línea 435...
426
                   	
435
                   	
427
	 	         </div>
436
	 	         </div>
428
	 	     </div>
437
	 	     </div>
429
	 	</div>
438
	 	</div>
430
	 	<div class="card-footer text-right">
439
	 	<div class="card-footer text-right">
431
							<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
440
							<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-sync"></i> LABEL_REFRESH  </button>
432
							<?php if($allowAdd) : ?>
441
							<?php if($allowAdd) : ?>
433
							<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
442
							<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
-
 
443
							<?php endif; ?>
434
							<?php endif; ?>
444
							<button type="button" class="btn btn-primary btn-back"><i class="fa fa-undo"></i> LABEL_BACK </button>
435
	 	</div>
445
	 	</div>
436
	</div>
446
	</div>