File: /home/nhqyemt2u0zd/www/wp-content/themes/kitgreen1.1.0/framework/admin/index.php
<?php
require_once(ABS_PATH_ADMIN .'/TGM-Plugin-Activation-2.6.1/plugin-options.php');
/**
* alone_wbc_importer_description
*
*/
if( ! function_exists( 'jws_importer_description' ) ) {
function jws_importer_description()
{
$output = "";
/* validate server import */
$validate_phpinfo_import = array(
'memory_limit' => array( 'val' => 128, 'type' => 'M' ),
'post_max_size' => array( 'val' => 128, 'type' => 'M' ),
'upload_max_filesize' => array( 'val' => 128, 'type' => 'M' ),
'max_execution_time' => array( 'val' => 180, 'type' => '' ),
'max_input_time' => array( 'val' => 180, 'type' => '' ),
);
$output .= ( function_exists( 'bcore_VerifyImportSampleData' ) )
? bcore_verifyImportSampleData( $validate_phpinfo_import )
: "";
return "<div class='bcore-block-accordion-wrap'>{$output}</div>";
}
add_filter('wbc_importer_description', 'jws_importer_description' );
}