' .
__( 'This will be the last version of WPML which works with the currently installed PHP version', 'sitepress' ) .
'' .
'
' .
__( 'This version of WPML will only receive security fixes for the next 12 months', 'sitepress' ) .
'';
return $message;
}
/**
* Load Whip.
*/
public function load_whip() {
if ( ! ( 'index.php' === $GLOBALS['pagenow'] && current_user_can( 'manage_options' ) ) ) {
return;
}
add_filter( 'whip_hosting_page_url_wordpress', '__return_true' );
add_filter( 'whip_name_of_host', array( $this, 'whip_name_of_host' ) );
add_filter( 'whip_message_from_host_about_php', array( $this, 'whip_message_from_host_about_php' ) );
whip_wp_check_versions( array( 'php' => '>=5.6' ) );
}
}