Nothing
#' Create a string with a more readable date/time
#'
#' Add a nicely-formatted date/time string inside the body of the email with
#' this helper function. We can provide a `POSIXct` date-time object or use the
#' current date/time/tz (based on the user's locale information at the time of
#' the function call). There are options to specify whether the date, time, and
#' time zone parts are to be included.
#'
#' @param time The `POSIXct` time to use, and to make more readable for email
#' recipients. If a `time` is not provided (the default), the current system
#' time will be used.
#' @param use_date,use_time,use_tz Logical value that indicate whether to
#' include the date, time, or time zone components.
#'
#' @return A character object that can be placed inside any message component
#' message wherever the function is called.
#'
#' @examples
#'
#' # Generate a date and time value using a specified date/time value
#' add_readable_time(
#' time = ISOdatetime(
#' year = 2022,
#' month = 3,
#' day = 15,
#' hour = 8,
#' min = 30,
#' sec = 0,
#' tz = "GMT"
#' ),
#' use_tz = FALSE
#' )
#'
#' @export
add_readable_time <- function(
time = NULL,
use_date = TRUE,
use_time = TRUE,
use_tz = TRUE
) {
if (is.null(time)) {
time <- Sys.time()
} else if (!inherits(time, "POSIXct")) {
stop("The `time` value must be a POSIXct date-time value.", call. = FALSE)
}
if (isTRUE(use_date)) {
current_date <-
paste0(
format(time, "%A, %B "),
as.numeric(format(time, "%d")),
", ",
format(time, "%Y")
)
} else {
current_date <- ""
}
if (isTRUE(use_time)) {
current_time <-
paste0(
gsub(" |^0", "", format(time, "%I:%M")),
toupper(format(time, " %p"))
)
if (isTRUE(use_date)) {
current_time <- paste0(" at ", current_time)
}
} else {
current_time <- ""
}
if (isTRUE(use_tz) && (isTRUE(use_date) || isTRUE(use_time))) {
current_tz <- format(time, " (%Z)")
} else if (isTRUE(use_tz) && (use_date == FALSE && use_time == FALSE)) {
current_tz <- format(time, "%Z")
} else {
current_tz <- ""
}
paste0(current_date, current_time, current_tz)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.