File: /home/c1190199/public_html/_alex/wp-content/themes/portada/template/admin/meta_box_widget_area.php
<?php echo $this->data['nonce']; ?>
<div class="to">
<ul class="to-form-field-list">
<li>
<h5><?php esc_html_e('Footer layout','portada'); ?></h5>
<span class="to-legend"><?php esc_html_e('Select layout of widgets in footer. This option works only if this widget area is selected as sidebar in footer.','portada'); ?></span>
<div class="to-clear-fix">
<select name="<?php Portada_ThemeHelper::getFormName('widget_area_footer_layout'); ?>" id="<?php Portada_ThemeHelper::getFormName('widget_area_footer_layout'); ?>">
<?php
foreach($this->data['dictionary']['layout'] as $index=>$value)
echo '<option value="'.esc_attr($index).'" '.(Portada_ThemeHelper::selectedIf($this->data['option']['widget_area_footer_layout'],$index,false)).'>'.esc_html($index).'</option>';
?>
</select>
</div>
</li>
</ul>
</div>