| Server IP : 195.130.67.5 / Your IP : 216.73.217.127 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/cdc/wp-content/plugins/magic-liquidizer-responsive-table/includes/ |
Upload File : |
<?php
defined( 'ABSPATH' ) OR exit;
/*
/--------------------------------------------------------------------\
| |
| License: GLP Version 3 |
| |
| Magic Liquidizer Responsive Table - Make HTML Table Responsive. |
| Copyright (C) 2018, Elvin Deza, |
| http://innovedesigns.com/ |
| All rights reserved. |
| |
| By using the software, you agree to be bound by the terms of |
| this license. |
| |
| |
\--------------------------------------------------------------------/
*/
if (!function_exists('liquidizer_table_activation')) {
function liquidizer_table_activation() {
if(!current_user_can( 'activate_plugins' )) {
echo 'You have no permission to activate this plugin';
exit();
} else {
$liquidizer_lite_options = array(
'liquidizer_lite_wp_table' => '1',
'liquidizer_lite_wp_which_table_element' => 'table',
'liquidizer_lite_header_selector' => 'thead td, thead th, tr th',
'liquidizer_lite_bodyrow_selector' => 'tbody tr, tr',
'liquidizer_lite_wp_table_width' => '780');
/* Handling variable array */
foreach($liquidizer_lite_options as $x=>$x_value) {
if ( get_option( $x ) !== false ) {
update_option($x, $x_value);
} else {
add_option( $x, $x_value, '', 'yes' );
}
}
} // else
}
}