Your IP : 216.73.216.95


Current Path : /var/www/ooareogundevinitiative/wp-content/themes/pain/framework/admin/
Upload File :
Current File : /var/www/ooareogundevinitiative/wp-content/themes/pain/framework/admin/index.php

<?php
require_once(ABS_PATH_ADMIN .'/TGM-Plugin-Activation-2.6.1/plugin-options.php');

/**
 * pain_wbc_importer_description
 *
 */
if( ! function_exists( 'pain_importer_description' ) ) {
	function pain_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', 'pain_importer_description' );
}