EVOLUTION-NINJA
Edit File: download_types.php
<?php if($this->uri->segment(2)=="yarn_details") { $tablename="import_yarn"; } if($this->uri->segment(2)=="supplier_details") { $tablename="supplier_details"; } if($this->uri->segment(2)=="advance_authorisation_details") { $tablename="advance_auth"; } if($this->uri->segment(2)=="incentive_schemes_details") { $tablename="incentive_schemes"; } if($this->uri->segment(2)=="masters_import_details") { $tablename="masters_import"; } if($this->uri->segment(2)=="customer_master_details") { $tablename="customer_master"; } if($this->uri->segment(2)=="product_details") { $tablename="product_master"; } if($this->uri->segment(2)=="planning_shade_details") { $tablename="planning_shade"; } ?> <div style="margin-right:58px"> <a target="_blank" href="<?php echo base_url(); ?>dashboard/pdf_download/<?php echo @$tablename; ?>" class="btn" style=" width:33%; background:#D3D3D3; height:25px;padding:3px;">PDF</a> <a href="<?php echo base_url(); ?>dashboard/csv_download/<?php echo @$tablename; ?>" class="btn" style=" width:27%; background:#D3D3D3; height:25px;padding:3px;">CSV</a> <a href="<?php echo base_url(); ?>dashboard/" class="btn" style=" width:25%; background:#D3D3D3; height:25px;padding:3px;">Excel</a> </div>