' . tribe_not_php_version_message() . '
';
}
/**
* Loads the Text domain for non-compatible PHP versions
*
* @since 4.8
*
* @param string $domain Which domain we will try to translate to
* @param string $file Where to look for the lang folder
*
* @return void
*/
function tribe_not_php_version_textdomain( $domain, $file ) {
load_plugin_textdomain(
$domain,
false,
plugin_basename( $file ) . DIRECTORY_SEPARATOR . 'lang' . DIRECTORY_SEPARATOR
);
}
endif;