Support local aliases (close #33).

This commit is contained in:
David Molineus
2016-10-06 12:16:42 +02:00
parent 45cee3bfb8
commit 33a097ebe7
3 changed files with 38 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ class LeafletServices
*
* @return AliasGenerator
*/
const ALIAS_GENERATOR = 'leaflet.alias-generator';
const ALIAS_GENERATOR = 'leaflet.alias-generator.default';
/**
* Service name of the boot handler.
@@ -88,4 +88,11 @@ class LeafletServices
* @return ValueFilter
*/
const FRONTEND_VALUE_FILTER = 'leaflet.frontend.value-filter';
/**
* Service name for the alias generator uses for rows being unique in the pid.
*
* @return AliasGenerator
*/
const PARENT_ALIAS_GENERATOR = 'leaflet.alias-generator.parent';
}