--- title: Prebinding Helpers List Reference slug: '2414' canonical_url: https://docs.coveo.com/en/2414/ collection: coveo-for-sitecore-v5 source_format: adoc --- # Prebinding Helpers List Reference > **Legacy feature** > > The Coveo Hive Framework is now in maintenance mode and is no longer recommended for new implementations. > > To build new search experiences, use one of Coveo's more modern, lightweight, and responsive libraries. > To get started, see the [Build search](https://docs.coveo.com/en/2473/) article. This page contains an extensive list of the prebinding methods used in the Coveo Hive framework. ## fieldTranslator Translates the given field according to the current context. **Example** The following line: ```html
``` Gives the following result: ```html ``` ## analyticsEnabled Outputs `true` or `false` whether the analytics are enabled or not. **Example** The following line: ```html ``` Gives the following result: ```html ``` ## coveoForSitecoreAnalyticsEndpoint If the value isn't defined, assigns it a default endpoint value extracted from the context. > **Important** > > An existing value won't be overridden by this prebinding method. **Example** The following line: ```html ``` Gives the following result: ```html ``` ## currentPageName If the value isn't defined, assigns it the current page name value extracted from the context. > **Important** > > An existing value won't be overridden by this prebinding method. **Example** The following line: ```html ``` Gives the following result: ```html ``` ## isAnonymous Outputs `true` or `false` whether the user is logged in or not. **Example** The following line: ```html ``` Gives the following result: ```html ``` ## sortCriteria Takes a JSON object representing a sort criteria and outputs the translated criteria. **Example** The following line: ```html ``` Gives the following result: ```html ``` You can add the `sc-enable-both-sort-directions="true"` attribute to allow sorting in both directions. In the Coveo for Sitecore [September 18, 2020 release](https://docs.coveo.com/en/3314/), the attribute has been renamed from `sc-enable-direction-toggle` to `sc-enable-both-sort-directions`. You can find more details in the [Usage Notes](https://docs.coveo.com/en/3052#usage-notes) section of the Results Sorts Section article. **Example** The following line: ```html ``` Gives the following result: ```html ``` ## unfoldDictionaryToAttributes Takes a JSON dictionary as its original value and assigns an attribute for each of them with their value. **Example** The following line: ```html ``` Gives the following result: ```html ```