Skip to content

Commit

Permalink
#1022 Add settings interface for copyright notice
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannick committed Dec 20, 2014
1 parent 8de6d5e commit ebe0de6
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions backstage/appearance.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,35 @@
</label>
</div>
</div>
</div>
<hr />
<div class="form-group">
<label class="col-sm-3 control-label">Copyright</label>
<div class="col-sm-9">
<div class="checkbox">
<label>
<input disabled type="checkbox" name="form[show_copyright]" value="1" <?php if ($luna_config['o_show_copyright'] == '1') echo ' checked="checked"' ?> />
Show the copyright notice in the footer.
</label>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label"></label>
<div class="col-sm-9">
<div class="radio">
<label>
<input disabled type="radio" name="form[copyright_type]" id="o_copyright_type_0" value="0"<?php if ($luna_config['o_copyright_type'] == '0') echo ' checked="checked"' ?> />
Show default copyright
</label>
</div>
<div class="radio">
<label>
<input disabled type="radio" name="form[copyright_type]" id="o_copyright_type_1" value="1"<?php if ($luna_config['o_copyright_type'] == '1') echo ' checked="checked"' ?> />
<input disabled type="text" class="form-control" name="form[custom_copyright]" placeholder="Your copyright" value="<?php echo $luna_config['o_custom_copyright'] ?>" />
</label>
</div>
</div>
</div>
</fieldset>
</div>
Expand Down

0 comments on commit ebe0de6

Please sign in to comment.