Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16891 Rev 16905
Línea 34... Línea 34...
34
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
34
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
35
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
35
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
Línea 36... Línea 36...
36
 
36
 
37
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
37
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
38
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
-
 
-
 
38
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
39
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nelberth-editor/style.css'));
39
 
40
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
40
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
41
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
41
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
42
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
42
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
Línea 218... Línea 218...
218
                }
218
                }
219
              ],
219
              ],
220
        });
220
        });
Línea 221... Línea 221...
221
 
221
 
222
 
222
 
223
    var validatorAdd = $('#form-topic-add').validate({
223
    var validatorAdd = $('#form-add').validate({
224
        debug: true,
224
        debug: true,
225
        onclick: false,
225
        onclick: false,
226
        onkeyup: false,
226
        onkeyup: false,
Línea 263... Línea 263...
263
			NProgress.start();
263
			NProgress.start();
264
            $.ajax({
264
            $.ajax({
265
                'dataType'  : 'json',
265
                'dataType'  : 'json',
266
                'accept'    : 'application/json',
266
                'accept'    : 'application/json',
267
                'method'    : 'post',
267
                'method'    : 'post',
268
                'url'       :  $('#form-topic-add').attr('action'),
268
                'url'       :  $('#form-add').attr('action'),
269
                'data'      :  formdata,
269
                'data'      :  formdata,
270
                'processData': false,
270
                'processData': false,
271
                'contentType': false,
271
                'contentType': false,
272
            }).done(function(response) {
272
            }).done(function(response) {
273
				console.log(response)
273
				console.log(response)
Línea 284... Línea 284...
284
                    validatorAdd.resetForm();
284
                    validatorAdd.resetForm();
285
                    if(jQuery.type(response['data']) == 'string') {
285
                    if(jQuery.type(response['data']) == 'string') {
286
                        $.fn.showError(response['data']);
286
                        $.fn.showError(response['data']);
287
                    } else  {
287
                    } else  {
288
                        $.each(response['data'], function( fieldname, errors ) {
288
                        $.each(response['data'], function( fieldname, errors ) {
289
                            $.fn.showFormErrorValidator('#form-topic-add #' + fieldname, errors);
289
                            $.fn.showFormErrorValidator('#form-add #' + fieldname, errors);
290
                        });
290
                        });
291
                    }
291
                    }
292
                }
292
                }
293
            }).fail(function( jqXHR, textStatus, errorThrown) {
293
            }).fail(function( jqXHR, textStatus, errorThrown) {
Línea 303... Línea 303...
303
        invalidHandler: function(form, validator) {
303
        invalidHandler: function(form, validator) {
Línea 304... Línea 304...
304
            
304
            
305
        }
305
        }
Línea 306... Línea 306...
306
    });
306
    });
307
 
307
 
308
    var validatorEdit  = $('#form-topic-edit').validate({
308
    var validatorEdit  = $('#form-edit').validate({
309
        debug: true,
309
        debug: true,
310
        onclick: false,
310
        onclick: false,
311
        onkeyup: false,
311
        onkeyup: false,
Línea 348... Línea 348...
348
			NProgress.start();
348
			NProgress.start();
349
            $.ajax({
349
            $.ajax({
350
                'dataType'  : 'json',
350
                'dataType'  : 'json',
351
                'accept'    : 'application/json',
351
                'accept'    : 'application/json',
352
                'method'    : 'post',
352
                'method'    : 'post',
353
                'url'       :  $('#form-topic-edit').attr('action'),
353
                'url'       :  $('#form-edit').attr('action'),
354
                'data'      :  formdata,
354
                'data'      :  formdata,
355
                'processData': false,
355
                'processData': false,
356
                'contentType': false,
356
                'contentType': false,
357
            }).done(function(response) {
357
            }).done(function(response) {
358
                if(response['success']) {
358
                if(response['success']) {
Línea 370... Línea 370...
370
                    validatorEdit.resetForm();
370
                    validatorEdit.resetForm();
371
                    if(jQuery.type(response['data']) == 'string') {
371
                    if(jQuery.type(response['data']) == 'string') {
372
                        $.fn.showError(response['data']);
372
                        $.fn.showError(response['data']);
373
                    } else  {
373
                    } else  {
374
                        $.each(response['data'], function( fieldname, errors ) {
374
                        $.each(response['data'], function( fieldname, errors ) {
375
                            $.fn.showFormErrorValidator('#form-topic-edit #' + fieldname, errors);
375
                            $.fn.showFormErrorValidator('#form-edit #' + fieldname, errors);
376
                        });
376
                        });
377
                    }
377
                    }
378
                }
378
                }
379
            }).fail(function( jqXHR, textStatus, errorThrown) {
379
            }).fail(function( jqXHR, textStatus, errorThrown) {
380
                $.fn.showError(textStatus);
380
                $.fn.showError(textStatus);
Línea 433... Línea 433...
433
            $('#image-app').attr('src', $(this).data('href'));
433
            $('#image-app').attr('src', $(this).data('href'));
434
            $('#modalPreviewImage').modal('show');
434
            $('#modalPreviewImage').modal('show');
435
            return false;
435
            return false;
436
        });		
436
        });		
Línea 437... Línea 437...
437
 
437
 
Línea 438... Línea 438...
438
        $('#form-topic-add #order').inputNumberFormat({decimal: 0});
438
        $('#form-add #order').inputNumberFormat({decimal: 0});
439
 
439
 
Línea 440... Línea 440...
440
 
440
 
441
 
441
 
442
        $('body').on('click', 'button.btn-add', function(e) {
442
        $('body').on('click', 'button.btn-add', function(e) {
443
            e.preventDefault();
443
            e.preventDefault();
444
    
444
    
445
            $('#form-topic-add #name').val('');
445
            $('#form-add #name').val('');
446
            $('#form-topic-add #order').val('1');
446
            $('#form-add #order').val('1');
Línea 447... Línea 447...
447
            $('#form-topic-add #name').val('');
447
            $('#form-add #name').val('');
448
    
448
    
Línea 463... Línea 463...
463
            return false;
463
            return false;
464
        });
464
        });
Línea 465... Línea 465...
465
 
465
 
Línea 466... Línea 466...
466
 
466
 
467
    
467
    
468
        $('#form-topic-edit #order').inputNumberFormat({decimal: 0});
468
        $('#form-edit #order').inputNumberFormat({decimal: 0});
469
    
469
    
470
          $('#form-topic-add #file').fileinput({
470
          $('#form-add #file').fileinput({
471
                theme: 'fa',
471
                theme: 'fa',
472
                language: 'es',
472
                language: 'es',
473
                showUpload: false,
473
                showUpload: false,
474
                dropZoneEnabled: false,
474
                dropZoneEnabled: false,
Línea 475... Línea 475...
475
                maxFileCount: 1,
475
                maxFileCount: 1,
476
                placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
476
                placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
477
                allowedFileExtensions: ['jpeg', 'jpg', 'png'],
477
                allowedFileExtensions: ['jpeg', 'jpg', 'png'],
478
            });
478
            });
479
    
479
    
480
            $('#form-topic-edit #file').fileinput({
480
            $('#form-edit #file').fileinput({
Línea 498... Línea 498...
498
                'method'    : 'get',
498
                'method'    : 'get',
499
                'url'       :  url,
499
                'url'       :  url,
500
            }).done(function(response) {
500
            }).done(function(response) {
501
                if(response['success']) {
501
                if(response['success']) {
502
					console.log(response['data'])
502
					console.log(response['data'])
503
                    $('#form-topic-edit')[0].reset();
503
                    $('#form-edit')[0].reset();
Línea 504... Línea 504...
504
    
504
    
505
                    $('#form-topic-edit').attr('action',url);
505
                    $('#form-edit').attr('action',url);
506
                    $('#form-topic-edit #name').val(response['data']['name']);
506
                    $('#form-edit #name').val(response['data']['name']);
507
                    $('#form-topic-edit #order').val(response['data']['order']);
507
                    $('#form-edit #order').val(response['data']['order']);
508
 
508
 
509
					$('#form-topic-edit #status').val(response['data']['status']);
509
					$('#form-edit #status').val(response['data']['status']);
510
                    $('#form-topic-edit #file').fileinput('reset');
510
                    $('#form-edit #file').fileinput('reset');
Línea 511... Línea 511...
511
                    $('#form-topic-edit #file').val('');
511
                    $('#form-edit #file').val('');
512
 
512
 
Línea 513... Línea 513...
513
                    CKEDITOR.instances.description_edit.setData(response['data']['description']);
513
                    CKEDITOR.instances.description_edit.setData(response['data']['description']);
Línea 521... Línea 521...
521
                    validatorEdit.resetForm();
521
                    validatorEdit.resetForm();
522
                    if(jQuery.type(response['data']) == 'string') {
522
                    if(jQuery.type(response['data']) == 'string') {
523
                        $.fn.showError(response['data']);
523
                        $.fn.showError(response['data']);
524
                    } else  {
524
                    } else  {
525
                        $.each(response['data'], function( fieldname, errors ) {
525
                        $.each(response['data'], function( fieldname, errors ) {
526
                            $.fn.showFormErrorValidator('#form-topic-edit #' + fieldname, errors);
526
                            $.fn.showFormErrorValidator('#form-edit #' + fieldname, errors);
527
                        });
527
                        });
528
                    }
528
                    }
529
                }
529
                }
530
            }).fail(function( jqXHR, textStatus, errorThrown) {
530
            }).fail(function( jqXHR, textStatus, errorThrown) {
531
                $.fn.showError(textStatus);
531
                $.fn.showError(textStatus);
Línea 624... Línea 624...
624
	 	<?php
624
	 	<?php
625
		$form = $this->formAdd;
625
		$form = $this->formAdd;
626
		$form->setAttributes([
626
		$form->setAttributes([
627
			'method'  => 'post',
627
			'method'  => 'post',
628
			'action'  => $routeAdd,
628
			'action'  => $routeAdd,
629
			'name'    => 'form-topic-add',
629
			'name'    => 'form-add',
630
			'id'      => 'form-topic-add',
630
			'id'      => 'form-add',
631
		]);
631
		]);
Línea 632... Línea 632...
632
 
632
 
633
		$form->prepare();
633
		$form->prepare();
634
		echo $this->form()->openTag($form);
634
		echo $this->form()->openTag($form);
Línea 692... Línea 692...
692
    	 		<div class="col-12 mt-3">
692
    	 		<div class="col-12 mt-3">
693
                            <?php
693
                            <?php
694
                            $element = $form->get('file');
694
                            $element = $form->get('file');
695
                            $element->setOptions(['label' => 'LABEL_IMAGE']);
695
                            $element->setOptions(['label' => 'LABEL_IMAGE']);
696
                            $element->setAttributes(['class' => 'form-control']);
696
                            $element->setAttributes(['class' => 'form-control']);
697
                            
-
 
-
 
697
                            $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
698
                            echo $this->formLabel($element);
698
                            echo $this->formLabel($element);
699
                            echo $this->formFile($element);
699
                            echo $this->formFile($element);
700
                            ?>
700
                            ?>
701
                	</div>
701
                	</div>
702
         	</div> 
702
         	</div> 
Línea 716... Línea 716...
716
	 	</div>
716
	 	</div>
717
	 	<?php
717
	 	<?php
718
		$form = $this->formEdit;
718
		$form = $this->formEdit;
719
		$form->setAttributes([
719
		$form->setAttributes([
720
			'method'    => 'post',
720
			'method'    => 'post',
721
			'name'      => 'form-topic-edit',
721
			'name'      => 'form-edit',
722
			'id'        => 'form-topic-edit'
722
			'id'        => 'form-edit'
723
		]);
723
		]);
Línea 724... Línea 724...
724
 
724
 
725
		$form->prepare();
725
		$form->prepare();
726
		echo $this->form()->openTag($form);
726
		echo $this->form()->openTag($form);
Línea 770... Línea 770...
770
	 	         	<div class="col-12 mt-3">
770
	 	         	<div class="col-12 mt-3">
771
                        <?php
771
                        <?php
772
                        $element = $form->get('file');
772
                        $element = $form->get('file');
773
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
773
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
774
                        $element->setAttributes(['class' => 'form-control']);
774
                        $element->setAttributes(['class' => 'form-control']);
775
                        
-
 
-
 
775
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
776
                        echo $this->formLabel($element);
776
                        echo $this->formLabel($element);
777
                        echo $this->formFile($element);
777
                        echo $this->formFile($element);
778
                        ?>
778
                        ?>
779
                    </div>
779
                    </div>
780
                </div> 
780
                </div>