Example #1
0
				<label id="targetlistlabel" for="targetlist">{#advanced_dlg.link_target}</label>
				<span id="targetlistcontainer"><select id="target_list" name="target_list"></select></span>
			</div>
			<div class="input">
				<label for="linktitle">{#advanced_dlg.link_titlefield}</label>
				<input id="linktitle" name="linktitle" type="text" value="" />
			</div>
			<div class="input">
				<label for="stylelist">Stijl</label>
				<select id="stylelist" name="stylelist">
					<option value="">- Standaard -</option>
					<?php 
if (count(Config::buttoncolors())) {
    ?>
						<?php 
    foreach (Config::buttoncolors() as $colorname => $colorhex) {
        ?>
							<option value="button <?php 
        echo strtolower($colorname);
        ?>
" data-hex="<?php 
        echo $colorhex;
        ?>
">Knop (<?php 
        echo $colorname;
        ?>
)</option>
						<?php 
    }
    ?>
					<?php