Skip to content

Instantly share code, notes, and snippets.

@yuu-nkjm
Created November 3, 2014 12:23
Show Gist options
  • Save yuu-nkjm/1a8961411b2f26f4ed1a to your computer and use it in GitHub Desktop.
Save yuu-nkjm/1a8961411b2f26f4ed1a to your computer and use it in GitHub Desktop.
magcruiseのテンプレート機能を削除した
<div class="control-group">
<label class="control-label"><strong><?php echo __("label_template"); ?></strong></label>
<div class="controls">
<div class="input-append" style="width: 80%;">
<select id="template" style="width:100%;">
<option value="0"></option>
<?php foreach ($templates as $key => $val): ?>
<option value="<?php echo $key; ?>"><?php echo $val; ?></option>
<?php endforeach; ?>
</select>
<input id="copy_btn" type="button" disabled="disabled" class="btn" value="<?php echo __("message_copy_template"); ?>" style="margin-left: 5px;" />
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment