<?php echo $header; ?>
<div id="content">
<div class="breadcrumb">
  <?php foreach ($breadcrumbs as $breadcrumb) { ?>
  <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
  <?php } ?>
</div>
<?php if ($error_warning) { ?>
<div class="warning"><?php echo $error_warning; ?></div>
<?php } ?>
<style>
table#rpx_table tr td{vertical-align:top;}
table#rpx_table a{text-decoration:none;color:#1111CC}
table#rpx_table a:hover{text-decoration:underline;}
table#rpx_table .rpx_img{ margin:0 0 3px 10px;vertical-align:middle;}
.rpx_label_desc{font-family:Tahoma;font-size:11px;padding-top:5px;display:block;font-weight:normal;}
.poweredBy{display:block;clear:both;margin:0;padding:10px 0;text-align:center;font-size:110%}
.poweredBy a{text-decoration:none;color:#1122CC}
.poweredBy a:hover{text-decoration:underline}
</style>
<div class="box">
  <div class="heading">
    <h1><img src="view/image/module.png" alt="" /><?php echo $heading_title; ?></h1>
    <div class="buttons"><a onClick="$('#form').submit();" class="button"><span><?php echo $button_save; ?></span></a><a onClick="location = '<?php echo $cancel; ?>';" class="button"><span><?php echo $button_cancel; ?></span></a></div>
  </div>
  <div class="content">
    <form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="form">
      <table class="form" id="rpx_table">
        <tr>
          <td>*<?php echo $entry_product;?></td>
          <td valign="top"><?php echo $values_product;?></td>
        </tr>
		<tr>
          <td>*<?php echo $entry_deal_link;?></td>
          <td valign="top"><input type="radio" name="dealoftheday_radio" value="1" <?php echo $yes_checked;?>  /><?php echo $text_yes;?><input type="radio" name="dealoftheday_radio" value="0"  <?php echo $no_checked;?> /><?php echo $text_no;?></td>
        </tr>
      </table>
      <table id="module" class="list">
        <thead>
          <tr>
            <td class="center"><?php echo $entry_layout; ?></td>
            <td class="center"><?php echo $entry_position; ?></td>
			<td class="center"><?php echo $entry_image; ?></td>
            <td class="center"><?php echo $entry_status; ?></td>
            <td class="center"><?php echo $entry_sort_order; ?></td>
            <td></td>
          </tr>
        </thead>
        <?php $module_row = 0; ?>
        <?php foreach ($modules as $module) { ?>
        <tbody id="module-row<?php echo $module_row; ?>">
          <tr>
            <td class="center"><select name="dealoftheday_module[<?php echo $module_row; ?>][layout_id]">
                <?php foreach ($layouts as $layout) { ?>
                <?php if ($layout['layout_id'] == $module['layout_id']) { ?>
                <option value="<?php echo $layout['layout_id']; ?>" selected="selected"><?php echo $layout['name']; ?></option>
                <?php } else { ?>
                <option value="<?php echo $layout['layout_id']; ?>"><?php echo $layout['name']; ?></option>
                <?php } ?>
                <?php } ?>
              </select>
            </td>
            <td class="center"><select name="dealoftheday_module[<?php echo $module_row; ?>][position]">
                <?php if ($module['position'] == 'content_top') { ?>
                <option value="content_top" selected="selected"><?php echo $text_content_top; ?></option>
                <?php } else { ?>
                <option value="content_top"><?php echo $text_content_top; ?></option>
                <?php } ?>
                <?php if ($module['position'] == 'content_bottom') { ?>
                <option value="content_bottom" selected="selected"><?php echo $text_content_bottom; ?></option>
                <?php } else { ?>
                <option value="content_bottom"><?php echo $text_content_bottom; ?></option>
                <?php } ?>
                <?php if ($module['position'] == 'column_left') { ?>
                <option value="column_left" selected="selected"><?php echo $text_column_left; ?></option>
                <?php } else { ?>
                <option value="column_left"><?php echo $text_column_left; ?></option>
                <?php } ?>
                <?php if ($module['position'] == 'column_right') { ?>
                <option value="column_right" selected="selected"><?php echo $text_column_right; ?></option>
                <?php } else { ?>
                <option value="column_right"><?php echo $text_column_right; ?></option>
                <?php } ?>
              </select></td>
			 <td class="center"><input type="text" name="dealoftheday_module[<?php echo $module_row; ?>][image_width]" value="<?php echo $module['image_width']; ?>" size="3" />
              <input type="text" name="dealoftheday_module[<?php echo $module_row; ?>][image_height]" value="<?php echo $module['image_height']; ?>" size="3" />
            </td>
            <td class="center"><select name="dealoftheday_module[<?php echo $module_row; ?>][status]">
                <?php if ($module['status']) { ?>
                <option value="1" selected="selected"><?php echo $text_enabled; ?></option>
                <option value="0"><?php echo $text_disabled; ?></option>
                <?php } else { ?>
                <option value="1"><?php echo $text_enabled; ?></option>
                <option value="0" selected="selected"><?php echo $text_disabled; ?></option>
                <?php } ?>
              </select></td>
            <td class="center"><input type="text" name="dealoftheday_module[<?php echo $module_row; ?>][sort_order]" value="<?php echo $module['sort_order']; ?>" size="3" /></td>
            <td class="left"><a onClick="$('#module-row<?php echo $module_row; ?>').remove();" class="button"><span><?php echo $button_remove; ?></span></a></td>
          </tr>
        </tbody>
        <?php $module_row++; ?>
        <?php } ?>
        <tfoot>
          <tr>
            <td colspan="5"></td>
            <td class="left"><a onClick="addModule();" class="button"><span><?php echo $button_add_module; ?></span></a></td>
          </tr>
        </tfoot>
      </table>
    </form>
	<div class="poweredBy"><?php echo $text_powered_by;?></div>
  </div>
</div>
<script type="text/javascript"><!--
var module_row = <?php echo $module_row; ?>;
function addModule() {	
	html  = '<tbody id="module-row' + module_row + '">';
	html += '  <tr>';
	html += '    <td class="left"><select name="dealoftheday_module[' + module_row + '][layout_id]">';
	<?php foreach ($layouts as $layout) { ?>
	html += '      <option value="<?php echo $layout['layout_id']; ?>"><?php echo $layout['name']; ?></option>';
	<?php } ?>
	html += '    </select></td>';
	html += '    <td class="center"><select name="dealoftheday_module[' + module_row + '][position]">';
	html += '      <option value="content_top"><?php echo $text_content_top; ?></option>';
	html += '      <option value="content_bottom"><?php echo $text_content_bottom; ?></option>';
	html += '      <option value="column_left"><?php echo $text_column_left; ?></option>';
	html += '      <option value="column_right"><?php echo $text_column_right; ?></option>';
	html += '    </select></td>';
	html += '    <td class="center"><input type="text" name="dealoftheday_module[' + module_row + '][image_width]" value="360" size="3" /> <input type="text" name="dealoftheday_module[' + module_row + '][image_height]" value="230" size="3" /></td>';
	html += '    <td class="center"><select name="dealoftheday_module[' + module_row + '][status]">';
    html += '      <option value="1" selected="selected"><?php echo $text_enabled; ?></option>';
    html += '      <option value="0"><?php echo $text_disabled; ?></option>';
    html += '    </select></td>';
	html += '    <td class="center"><input type="text" name="dealoftheday_module[' + module_row + '][sort_order]" value="" size="3" /></td>';
	html += '    <td class="left"><a onclick="$(\'#module-row' + module_row + '\').remove();" class="button"><span><?php echo $button_remove; ?></span></a></td>';
	html += '  </tr>';
	html += '</tbody>';
	

	$('#module tfoot').before(html);
	
	module_row++;
}
//--></script>