first commit

This commit is contained in:
pakerpale
2020-06-10 06:21:34 +09:00
commit 20c9739ba9
1913 changed files with 266257 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title"><?php echo $this->lang->line('comments_delete').": ".$form[0]['commentID'] ?>?</h4>
</div> <!-- /modal-header -->
<div class="modal-body">
<div class="alert alert-danger" role="alert">
<strong>WARNING: </strong><p><?php echo $this->lang->line('comments_delete_message'); ?></p>
</div>
</div> <!-- /modal-body -->
<div class="modal-footer">
<form ACTION="<?php echo BASE_URL.'/admin/comments/delete/'.$form[0]['commentID']; ?>" method="POST" name="pageform" id="pageform">
<input name="deleteid" type="hidden" id="deleteid" value="<?php echo $form[0]['commentID'] ?>" />
<button type="button" class="btn btn-default" data-dismiss="modal"><?php echo $this->lang->line('btn_cancel'); ?></button>
<input class="btn btn-danger" type="submit" value="<?php echo $this->lang->line('btn_delete'); ?>"/>
</form>
</div> <!-- /modal-footer -->