$data Data * * @return array */ public static function installerParams($data) { // disable plugins $data['fd_plugins'] = array( 'value' => array( 'wpcomsh-loader.php', 'advanced-cache.php', 'object-cache.php', ), ); // generare new wp-config.php file $data['wp_config'] = array( 'value' => 'new', 'formStatus' => 'st_infoonly', ); // disable WP_CACHE $data['wpc_WP_CACHE'] = array( 'value' => array( 'value' => false, 'inWpConfig' => false, ), 'formStatus' => 'st_infoonly', ); return $data; } }