Tati Booyakah
Member
Hello...
I know how to get a selection list option for installed addons with a named template and the code below.
But is there a way this can be accomplished with a selection list of installed styles?
I know how to get a selection list option for installed addons with a named template and the code below.
But is there a way this can be accomplished with a selection list of installed styles?
Code:
<xf:set var="$addOnRepo" value="{{ $xf.app.em.getRepository('XF:AddOn') }}" />
<xf:formrow label="{$option.title}" hint="{$hintHtml}" explain="{$explainHtml}" html="{$listedHtml}" rowclass="{$rowClass}">
<xf:select name="{$inputName}" value="{$option.option_value}">
<xf:option value=""></xf:option>
<xf:foreach loop="{{ $addOnRepo.findAddOnsForList().fetch() }}" value="$addOn">
<xf:option value="{$addOn.addon_id}">{$addOn.title}</xf:option>
</xf:foreach>
</xf:select>
</xf:formrow>