mambax7/publisher

View on GitHub
templates_bootstrap/bootstrap4/publisher/blocks/publisher_category_items_sel.tpl

Summary

Maintainability
Test Coverage
<{foreach item=category from=$block.categories|default:false}>
    <!--<strong><{$category.name}></strong> <br>-->
    <select class="form-control" style="margin-bottom: 5px;" name="publisher_category_item_link"
            onchange="location=this.options[this.selectedIndex].value">
        <{foreach item=item from=$category.items|default:false}>
            <option title="<{$item.title}>" value="<{$item.itemurl}>"><{$item.title}></option>
        <{/foreach}>
    </select>
<{/foreach}>