Handlebars Helpers/Variables
Where are helpers/variables in handlebars set? For example, in this code:
<form data-paths="{{this.ugcPath}}" class="scf-js-searchform navbar-form navbar-left" role="search"> <div class="form-group"> <input type="text" name="input_value" placeholder="{{i18n "Search..."}}" class="form-control scf-search-value, scf-js-search-value"> <input style="display:none" type="checkbox" class="scf-js-search-jcrtitle" value="jcr:title" checked></input> <input style="display:none" type="checkbox" class="scf-js-search-jcrdescription" value="jcr:description" checked></input> <input style="display:none" type="checkbox" class="scf-js-search-tag" value="tag" checked></input> <input style="display:none" type="checkbox" class="scf-js-search-userIdentifier" value="userIdentifier" checked></input> <input type="hidden" name="resultPage" class="scf-js-seach-resultPage" value="{{searchPagePath}}"></input> </div> </form>Where are
{{this.ugcPath}} and {{searchPagePath}}defined? This code snippet is from here: /libs/social/console/components/hbs/searchbar/searchbar.hbs

