Skip to content
Snippets Groups Projects
Commit 7f9725f2 authored by Sebastian Castro's avatar Sebastian Castro
Browse files

admin-category: display id & customId

parent 857f2d8c
No related branches found
No related tags found
Loading
......@@ -64,6 +64,7 @@ class CategoryAdmin extends GoGoAbstractAdmin
->end()
->halfPanel('secondary')
->add('nameShort')
->add('customId')
->add('index')
->add('showExpanded')
->add('unexpandable')
......
......@@ -16,7 +16,6 @@ class Category
{
/**
* @var int
* @Exclude
* @MongoDB\Id(strategy="INCREMENT")
*/
private $id;
......@@ -235,6 +234,11 @@ class Category
return $this;
}
public function getCustomStringId()
{
return $this->customId ?: strval($this->id);
}
/**
* Set name.
*
......
......@@ -4,6 +4,7 @@
<span class="category-item {{ category.options|length and not category.unexpandable ? 'expandable':'unexpandable' }}" {% if not category.displayInForm or not category.displayInMenu %}style="opacity: 0.5"{% endif %}>
<span class="name">(Groupe) {{ category.name|capitalize }}</span>
<span style="opacity: .6;margin-right: 10px;">( {{ category.customStringId }} )</span>
{% if not category.displayInForm or not category.displayInMenu %}<span class="fa fa-eye-slash"></span>{% endif %}
{% if category.options|length and not category.unexpandable %}<span class="arrow-after"></span>{% endif %}
{% if category.isMandatory %}<span class="label label-warning">Obligatoire</span>{% endif %}
......
......@@ -30,7 +30,7 @@
<option value="{{option.id}}" data-custom-id="{{option.customId}}">
{{ option.name }} {% if (option.textHelper is defined and option.textHelper) %} ({{ option.textHelper }}) {% endif %}
</option>
{% endif %}
{% endif %}
{% endfor %}
</select>
</span>
......
......@@ -701,6 +701,7 @@ categories:
nameShort: "Nom (version courte)"
nameShort_help: "La version courte est utilisée dans le menu, car souvent on manque de place"
index: "Position"
customId: "Id personnalisé"
showExpanded: "En position intiale afficher les catégories (sinon il faudra cliquer pour les afficher)"
unexpandable: "Ne pas pouvoir reduire ce groupe de catégories"
unexpandable_help: "Dans le menu, les catégories de ce groupe seront toujours affichées"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment