Update src/HTMLBuilder/Manager/FileManager.php

This commit is contained in:
Luca 2018-10-30 22:51:54 +01:00
parent 7cbaa89bae
commit 6b97f289be
1 changed files with 12 additions and 8 deletions

View File

@ -189,22 +189,26 @@ class FileManager implements ManagerInterface
<script> <script>
$(document).ready(function(){ $(document).ready(function(){
$("#'.$attachment_id.' #categoria").autocomplete({'; $("#'.$attachment_id.' #categoria").autocomplete({';
$first = true; $n_categorie = 0;
foreach ($categories as $category) { foreach ($categories as $category) {
if (!empty($category['category'])){ if (!empty($category['category'])){
if ($first) if ($n_categorie==0){
$result .= ' $result .= '
source: ['; source: [';
}
$result .= ' $result .= '
"'.$category['category'].'",'; "'.$category['category'].'",';
if ($first) $n_categorie++;
}
}
if ($n_categorie>0){
$result .= ' $result .= '
],'; ],';
}else{
$first = false; $result .= '
} source:"[]",';
} }
$result .= ' $result .= '
minLength: 0 minLength: 0