EVOLUTION-NINJA
Edit File: view_owner_sales_deeds.php
<?php echo view('includes/header');?> <section class="content-header"> <h1> Owner Sales Deed details </h1> </section> <!--- section 1 ----> <section class="content"> <?php $det = json_decode($details->ec); ?> <?php $uri=service('uri') ?> <input type="hidden" class="id" value="<?php echo $uri->getSegment(2);?>"> <div class="row land_owner_a"> <div class="col-sm-4"> <p>Sales Deeds</p> <?php $ext = pathinfo($details->sales_deed, PATHINFO_EXTENSION); ?> <?php if($ext == 'jpg' || $ext == 'JPG' || $ext == 'png' || $ext == 'PNG' || $ext == 'gif') { ?> <a href="<?php echo base_url('public/doc_sales_deed');?>/<?php echo $details->sales_deed;?>" target="_blank"><img src="<?php echo base_url('public/doc_sales_deed');?>/<?php echo $details->sales_deed;?>" class="appr_plan" style="height:300px;width:300px;"/></a> <br> <a class="remove" id="" href="javascript:void(0);"><span class="glyphicon glyphicon-trash"></span>Remove</a> <?php } else if($ext == 'pdf' || $ext == 'PDF') { ?> <a href="<?php echo base_url('public/doc_sales_deed');?>/<?php echo $details->sales_deed;?>" target="_blank"> <embed src="https://drive.google.com/viewerng/ viewer?embedded=true&url=<?php echo base_url('public/doc_sales_deed');?>/<?php echo $details->sales_deed;?>" style="height:300px;width:300px;"/><br><button class="btn btn-primary">Read more</button></a> <br> <a class="remove" id="" href="javascript:void(0);"><span class="glyphicon glyphicon-trash"></span>Remove</a> <!--<button type="button" class="btn btn-primary btn-md view">View</button>--> <?php }?> </div> </div> <?php if($details->sales_deed != "") {?> <div class="col-md-12" > <div class="form-group col-md-8"> <button type="button" class="btn btn-primary btn-md center-block send_mail">Send Mail</button> </div> </div> <?php } ?> </section> <!--- section 2 ----> <style type="text/css"> .content-wrapper, .right-side { min-height: 2000px !important; } .bok-details{ background: gainsboro; text-align: center; padding-top: 7px; padding-bottom: 7px; margin-bottom: 30px; margin-top: 33px; } a { color: inherit; } </style> <script type="text/javascript"> var id = $('.id').val(); $(".send_mail").click(function(){ window.location.href="<?php echo site_url('send-mail-owner-contents');?>/"+id+'/'+'owd'; }); $('.remove').click(function() { $.ajax({ url:"<?php echo site_url("delete-owner-sales-deed")?>", type:"POST", data:{id:id}, success:function(response) { //response=jQuery.parseJSON(response); console.log(response); if(response.result == 1) { toastr["success"](response.message); window.location.href = "<?php echo site_url('owner-document-list');?>"; } } }); }); </script> <?php echo view('includes/footer');?>