Skip to content

Latest commit

 

History

History
63 lines (36 loc) · 1.73 KB

README.md

File metadata and controls

63 lines (36 loc) · 1.73 KB

Umbraco DictionaryHelper

All dictionary items are fetched and inserted into concurrency dictionary cache on start up and will be accessible with an extension on Umbraco helper.

Dictionary items can be created automaticly under specific parent key or by using namespacing to create a tree.

Available on Nuget

Click here to go to nuget project page

Example of usage with Umbraco helper:

Fetches the value of the dictionary item. Returns empty string if not found.

@using DictionaryHelper;

@Umbraco.DictionaryValue("key") //Fetches the value of the dictionary item. Returns empty string if not found.

Fetches the value of the dictionary item. Returns the default value if value is empty or key not found.

@Umbraco.DictionaryValue("key", "Default value")

Fetches the value of the dictionary item. Returns the default value if value is empty or key not found and will create the dictionary item with the default value if the key is not found.

@Umbraco.DictionaryValue("key", "Default value", null, true)

Creates the dictionary key if not found as a child on the parent key.

@Umbraco.DictionaryValue("key", "Default value", "parentKey", true)

Checks if any of the keys are existing and creates them if not found. With this approach the developer does not have to create the tree in the backoffice and its easy to know where the keys are located.

@Umbraco.DictionaryValue("root.child.key", "Default value", null, true)

"root.child.key" Will be created as:

- root
    - child
        - key

Example of usage with service:

using DictionaryHelper;

@Service.GetValueByKeyAndCulture("key", "en-GB")