| Línea 52... |
Línea 52... |
| 52 |
|
52 |
|
| 53 |
// bootbox Alert //
|
53 |
// bootbox Alert //
|
| Línea 54... |
Línea 54... |
| 54 |
$this->inlineScript()->appendFile($this->basePath('plugins/bootbox/bootbox.min.js'));
|
54 |
$this->inlineScript()->appendFile($this->basePath('plugins/bootbox/bootbox.min.js'));
|
| - |
|
55 |
|
| Línea 55... |
Línea 56... |
| 55 |
|
56 |
$status_active = \LeadersLinked\Model\CompanySelfEvaluationForm::STATUS_ACTIVE;
|
| - |
|
57 |
$status_inactive = \LeadersLinked\Model\CompanySelfEvaluationForm::STATUS_INACTIVE;
|
| Línea 56... |
Línea 58... |
| 56 |
$status_active = \LeadersLinked\Model\CompanySelfEvaluationForm::STATUS_ACTIVE;
|
58 |
|
| 57 |
|
59 |
$lang_es = \LeadersLinked\Model\CompanySelfEvaluationForm::LANGUAGE_SPANISH;
|
| 58 |
$language_es = \LeadersLinked\Model\CompanySelfEvaluationForm::LANGUAGE_SPANISH;
|
60 |
$lang_en = \LeadersLinked\Model\CompanySelfEvaluationForm::LANGUAGE_ENGLISH;
|
| Línea 1934... |
Línea 1936... |
| 1934 |
<textarea name="form-text" id="form-text" rows="5" class="ckeditor form-control"></textarea>
|
1936 |
<textarea name="form-text" id="form-text" rows="5" class="ckeditor form-control"></textarea>
|
| 1935 |
</div>
|
1937 |
</div>
|
| 1936 |
<div class="form-group">
|
1938 |
<div class="form-group">
|
| 1937 |
<label for="form-language">LABEL_LANGUAGES</label>
|
1939 |
<label for="form-language">LABEL_LANGUAGES</label>
|
| 1938 |
<select name="form-language" id="form-language" class="form-control">
|
1940 |
<select name="form-language" id="form-language" class="form-control">
|
| 1939 |
<option value="EN">LABEL_ENGLISH</option>
|
1941 |
<option value="<?php echo $lang_en;?>">LABEL_ENGLISH</option>
|
| 1940 |
<option value="SP">LABEL_SPANISH</option>
|
1942 |
<option value="<?php echo $lang_es;?>">LABEL_SPANISH</option>
|
| 1941 |
</select>
|
1943 |
</select>
|
| 1942 |
</div>
|
1944 |
</div>
|
| 1943 |
<div class="form-group">
|
1945 |
<div class="form-group">
|
| 1944 |
<label for="form-status">LABEL_STATUS</label>
|
1946 |
<label for="form-status">LABEL_STATUS</label>
|
| 1945 |
<select name="form-status" id="form-status" class="form-control">
|
1947 |
<select name="form-status" id="form-status" class="form-control">
|
| 1946 |
<option value="D">LABEL_INACTIVE</option>
|
1948 |
<option value="<?php echo $status_inactive;?>">LABEL_INACTIVE</option>
|
| 1947 |
<option value="A">LABEL_ACTIVE</option>
|
1949 |
<option value="<?php echo $status_active;?>">LABEL_ACTIVE</option>
|
| 1948 |
</select>
|
1950 |
</select>
|
| 1949 |
</div>
|
1951 |
</div>
|
| 1950 |
<br/>
|
1952 |
<br/>
|
| 1951 |
<div class="row">
|
1953 |
<div class="row">
|
| 1952 |
<div class="col-xs-12 col-md-12 text-right">
|
1954 |
<div class="col-xs-12 col-md-12 text-right">
|