File: /home/slfopp7cb1df/www/sitepacket.com/system/app/Views/settings/estimates.php
<div id="page-content" class="page-wrapper clearfix">
<div class="row">
<div class="col-sm-3 col-lg-2">
<?php
$tab_view['active_tab'] = "estimates";
echo view("settings/tabs", $tab_view);
?>
</div>
<div class="col-sm-9 col-lg-10">
<?php echo form_open(get_uri("settings/save_estimate_settings"), array("id" => "estimate-settings-form", "class" => "general-form dashed-row", "role" => "form")); ?>
<div class="card">
<ul data-bs-toggle="ajax-tab" class="nav nav-tabs bg-white title" role="tablist">
<li><a role="presentation" data-bs-toggle="tab" href="javascript:;" data-bs-target="#estimate-settings-tab"> <?php echo app_lang('estimate_settings'); ?></a></li>
<li><a role="presentation" data-bs-toggle="tab" href="<?php echo_uri("settings/estimate_request_settings/"); ?>" data-bs-target="#estimate-request-settings-tab"><?php echo app_lang('estimate_request_settings'); ?></a></li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade" id="estimate-settings-tab">
<div class="card-body">
<div class="form-group">
<div class="row">
<label for="estimate_prefix" class=" col-md-2"><?php echo app_lang('estimate_prefix'); ?></label>
<div class=" col-md-10">
<?php
echo form_input(array(
"id" => "estimate_prefix",
"name" => "estimate_prefix",
"value" => get_setting("estimate_prefix"),
"class" => "form-control",
"placeholder" => strtoupper(app_lang("estimate")) . " #"
));
?>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label for="estimate_color" class=" col-md-2"><?php echo app_lang('estimate_color'); ?></label>
<div class=" col-md-10">
<input type="color" id="estimate_color" name="estimate_color" value="<?php echo get_setting("estimate_color"); ?>" />
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label for="send_estimate_bcc_to" class=" col-md-2"><?php echo app_lang('send_estimate_bcc_to'); ?></label>
<div class=" col-md-10">
<?php
echo form_input(array(
"id" => "send_estimate_bcc_to",
"name" => "send_estimate_bcc_to",
"value" => get_setting("send_estimate_bcc_to"),
"class" => "form-control",
"placeholder" => app_lang("email")
));
?>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label for="initial_number_of_the_estimate" class="col-md-2"><?php echo app_lang('initial_number_of_the_estimate'); ?></label>
<div class="col-md-3">
<input type="hidden" id="last_estimate_id" name="last_estimate_id" value="<?php echo $last_id; ?>" />
<?php
echo form_input(array(
"id" => "initial_number_of_the_estimate",
"name" => "initial_number_of_the_estimate",
"type" => "number",
"value" => (get_setting("initial_number_of_the_estimate") > ($last_id + 1)) ? get_setting("initial_number_of_the_estimate") : ($last_id + 1),
"class" => "form-control mini",
"data-rule-greaterThan" => "#last_estimate_id",
"data-msg-greaterThan" => app_lang("the_estimates_id_must_be_larger_then_last_estimate_id")
));
?>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label for="estimate_footer" class="col-md-2"><?php echo app_lang('estimate_footer') ?></label>
<div class="col-md-10">
<?php
echo form_textarea(array(
"id" => "estimate_footer",
"name" => "estimate_footer",
"value" => process_images_from_content(get_setting('estimate_footer'), false),
"class" => "form-control",
"data-toolbar" => "pdf_friendly_toolbar",
"data-height" => 100,
"data-encode_ajax_post_data" => "1"
));
?>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label for="create_new_projects_automatically_when_estimates_gets_accepted" class="col-md-2"><?php echo app_lang("create_new_projects_automatically_when_estimates_gets_accepted"); ?></label>
<div class="col-md-10">
<?php
echo form_checkbox("create_new_projects_automatically_when_estimates_gets_accepted", "1", get_setting("create_new_projects_automatically_when_estimates_gets_accepted") ? true : false, "id='create_new_projects_automatically_when_estimates_gets_accepted' class='form-check-input'");
?>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label for="enable_comments_on_estimates" class="col-md-2"><?php echo app_lang('enable_comments_on_estimates'); ?></label>
<div class="col-md-10">
<?php
echo form_checkbox("enable_comments_on_estimates", "1", get_setting("enable_comments_on_estimates") ? true : false, "id='enable_comments_on_estimates' class='form-check-input'");
?>
</div>
</div>
</div>
<div id="most_recent_estimate_comments_checkbox_area" class="form-group <?php echo get_setting("enable_comments_on_estimates") ? "" : "hide" ?>">
<div class="row">
<label for="show_most_recent_estimate_comments_at_the_top" class="col-md-2"><?php echo app_lang('show_most_recent_estimate_comments_at_the_top'); ?></label>
<div class="col-md-10">
<?php
echo form_checkbox("show_most_recent_estimate_comments_at_the_top", "1", get_setting("show_most_recent_estimate_comments_at_the_top") ? true : false, "id='show_most_recent_estimate_comments_at_the_top' class='form-check-input'");
?>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label for="add_signature_option_on_accepting_estimate" class="col-md-2"><?php echo app_lang("add_signature_option_on_accepting_estimate"); ?></label>
<div class="col-md-10">
<?php
echo form_checkbox("add_signature_option_on_accepting_estimate", "1", get_setting("add_signature_option_on_accepting_estimate") ? true : false, "id='add_signature_option_on_accepting_estimate' class='form-check-input'");
?>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label for="enable_estimate_lock_state" class="col-md-2"><?php echo app_lang('enable_lock_state'); ?> <span class="help" data-bs-toggle="tooltip" title="<?php echo app_lang('estimate_lock_state_description'); ?>"><i data-feather='help-circle' class="icon-16"></i></span></label>
<div class="col-md-10">
<?php
echo form_checkbox("enable_estimate_lock_state", "1", get_setting("enable_estimate_lock_state") ? true : false, "id='enable_estimate_lock_state' class='form-check-input'");
?>
</div>
</div>
</div>
</div>
<div class="card-footer">
<button type="submit" class="btn btn-primary"><span data-feather='check-circle' class="icon-16"></span> <?php echo app_lang('save'); ?></button>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="estimate-request-settings-tab"></div>
</div>
</div>
<?php echo form_close(); ?>
</div>
</div>
</div>
<?php echo view("includes/cropbox"); ?>
<script type="text/javascript">
$(document).ready(function () {
$("#estimate-settings-form").appForm({
isModal: false,
onSuccess: function (result) {
if (result.success) {
appAlert.success(result.message, {duration: 10000});
} else {
appAlert.error(result.message);
}
}
});
$("#estimate-settings-form .select2").select2();
initWYSIWYGEditor("#estimate_footer");
$(".cropbox-upload").change(function () {
showCropBox(this);
});
//show/hide most_recent_estimate_comments_checkbox_area
$("#enable_comments_on_estimates").click(function () {
if ($(this).is(":checked")) {
$("#most_recent_estimate_comments_checkbox_area").removeClass("hide");
} else {
$("#most_recent_estimate_comments_checkbox_area").addClass("hide");
}
});
});
</script>