| Server IP : 103.161.17.216 / Your IP : 216.73.216.1 Web Server : nginx/1.18.0 System : Linux tipsysaigoncharming 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/app.houseland.info/application/views/admin/proposals/ |
Upload File : |
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<div class="modal fade" id="sync_data_proposal_data" data-rel-type="<?php echo e($rel_type); ?>" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><?php echo _l('sync_data'); ?></h4>
</div>
<div class="modal-body">
<?php
if ($rel_type == 'lead') {
$lang_key = 'lead_lowercase';
} else {
$lang_key = 'client_lowercase';
}
?>
<p><?php echo e(_l('proposal_sync_1_info', [_l($lang_key), _l($lang_key)])); ?></p>
<p><?php echo e(_l('proposal_sync_2_info', _l($lang_key))); ?></p>
<?php echo render_textarea('address', 'proposal_address', $related->address); ?>
<div class="row">
<div class="col-md-6">
<?php echo render_input('city', 'billing_city', $related->city); ?>
</div>
<div class="col-md-6">
<?php echo render_input('state', 'billing_state', $related->state); ?>
</div>
<div class="col-md-6">
<?php $countries = get_all_countries(); ?>
<?php echo render_select('country', $countries, ['country_id', ['short_name'], 'iso2'], 'billing_country', $related->country); ?>
</div>
<div class="col-md-6">
<?php echo render_input('zip', 'billing_zip', $related->zip); ?>
</div>
</div>
<?php echo render_input('phone', 'proposal_phone', $related->phonenumber); ?>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" onclick="sync_proposals_data(<?php echo e($rel_id); ?>,'<?php echo e($rel_type); ?>');"><?php echo _l('sync_now'); ?></button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->