Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16891 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15540 efrain 1
<?php
2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
7
 
8
$route      = $this->url('engagement/setup');
9
 
16822 efrain 10
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
11
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
15540 efrain 12
 
13
 
16929 efrain 14
 
15
 
16
 
16822 efrain 17
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-input-number/input-number-format.jquery.js'));
15540 efrain 18
 
19
 
20
$this->inlineScript()->captureStart();
21
echo <<<JS
22
    jQuery( document ).ready(function( $ ) {
23
 
24
 
25
 
26
        var validator = $('#form').validate({
27
            debug: true,
28
            onclick: false,
29
            onkeyup: false,
30
            ignore: [],
31
            rules: {
32
                'daily_pulse_how_are_you_feel': {
33
                    required: true,
34
                    min: 0,
35
 
36
                },
37
                'daily_pulse_climate_on_your_organization': {
38
                    required: true,
39
                    min: 0,
40
 
41
                },
42
                'feed_survey': {
43
                    required: true,
44
                    min: 0,
45
 
46
                },
47
                'internal_survey': {
48
                    required: true,
49
                    min: 0,
50
 
51
                },
52
            },
53
            submitHandler: function(form)
54
            {
55
 
56
                $.ajax({
57
                    'dataType'  : 'json',
58
                    'accept'    : 'application/json',
59
                    'method'    : 'post',
60
                    'url'       :  $('#form').attr('action'),
61
                    'data'      :  $('#form').serialize(),
62
                }).done(function(response) {
63
                    NProgress.start();
64
                    if(response['success']) {
65
                        $.fn.showSuccess(response['data']);
66
                    } else {
67
                        validator.resetForm();
68
                        if(jQuery.type(response['data']) == 'string') {
69
                            $.fn.showError(response['data']);
70
                        } else  {
71
                            $.each(response['data'], function( fieldname, errors ) {
72
                                $.fn.showFormErrorValidator('#form-add #' + fieldname, errors);
73
                            });
74
                        }
75
                    }
76
                }).fail(function( jqXHR, textStatus, errorThrown) {
77
                    $.fn.showError(textStatus);
78
                }).always(function() {
79
                    NProgress.done();
80
                });
81
                return false;
82
            },
83
            invalidHandler: function(form, validator) {
84
            }
85
        });
86
 
87
 
88
        $('#form #daily_pulse_how_are_you_feel').inputNumberFormat({decimal: 0});
89
        $('#form #daily_pulse_climate_on_your_organization').inputNumberFormat({decimal: 0});
90
        $('#form #feed_survey').inputNumberFormat({decimal: 0});
91
        $('#form #internal_survey').inputNumberFormat({decimal: 0});
92
 
93
 
94
 
95
 
96
    });
97
JS;
98
$this->inlineScript()->captureEnd();
99
?>
100
 
101
 
102
 
16822 efrain 103
<div class="container">
16891 efrain 104
 
15540 efrain 105
                <div class="card">
16891 efrain 106
                	<div class="card-header">
107
                	<h6 class="card-title">LABEL_ENGAGEMENT (LABEL_POINTS)</h6>
108
 
109
                	</div>
110
 
15540 efrain 111
                	 <?php
112
                    $form = $this->form;
113
                    $form->setAttributes([
114
                        'method'    => 'post',
115
                        'name'      => 'form',
116
                        'id'        => 'form',
117
                        'action'    => $route,
118
                    ]);
119
 
120
                    $form->prepare();
121
                    echo $this->form()->openTag($form);
122
                    ?>
123
                    <div class="card-body">
16891 efrain 124
 
125
	 					<div class="row">
126
	 	         			<div class="col-12 mt-3">
15540 efrain 127
                            <?php
128
                            $element = $form->get('daily_pulse_how_are_you_feel');
129
                            $element->setOptions(['label' => 'LABEL_HOW_ARE_YOU_FEEL']);
130
                            $element->setAttributes(['class' => 'form-control']);
131
 
132
                            echo $this->formLabel($element);
133
                            echo $this->formNumber($element);
134
                            ?>
16891 efrain 135
                        	</div>
136
						</div>
137
    	 				<div class="row">
138
    	 	         		<div class="col-12 mt-3">
15540 efrain 139
                            <?php
140
                            $element = $form->get('daily_pulse_climate_on_your_organization');
141
                            $element->setOptions(['label' => 'LABEL_CLIMATE_ON_YOUR_ORGANIZATION']);
142
                            $element->setAttributes(['class' => 'form-control']);
143
 
144
                            echo $this->formLabel($element);
145
                            echo $this->formNumber($element);
146
                            ?>
16891 efrain 147
                            </div>
15540 efrain 148
                        </div>
16891 efrain 149
 
150
	 					<div class="row">
151
	 	         			<div class="col-12 mt-3">
15540 efrain 152
                            <?php
153
                            $element = $form->get('feed_survey');
154
                            $element->setOptions(['label' => 'LABEL_FEED_SURVEY']);
155
                            $element->setAttributes(['class' => 'form-control']);
156
 
157
                            echo $this->formLabel($element);
158
                            echo $this->formNumber($element);
159
                            ?>
16891 efrain 160
                            </div>
15540 efrain 161
                        </div>
16891 efrain 162
 
163
	 					<div class="row">
164
	 	         			<div class="col-12 mt-3">
15540 efrain 165
                            <?php
166
                            $element = $form->get('internal_survey');
167
                            $element->setOptions(['label' => 'LABEL_INTERNAL_SURVEY']);
168
                            $element->setAttributes(['class' => 'form-control']);
169
 
170
                            echo $this->formLabel($element);
171
                            echo $this->formNumber($element);
172
                            ?>
16891 efrain 173
                            </div>
15540 efrain 174
                        </div>
175
 
176
 
177
 
178
               		</div>
179
 
16891 efrain 180
		<div class="card-footer text-right">
181
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
182
		</div>
183
   		<?php echo $this->form()->closeTag($form); ?>
184
	</div>
185
</div>
16822 efrain 186
 
16891 efrain 187