splitted up format time function
This commit is contained in:
parent
2257e86f0f
commit
f99f009e2e
1 changed files with 14 additions and 6 deletions
|
@ -161,11 +161,19 @@ abstract class Event extends Post {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Compose a human readable formatted start time.
|
* Compose a human readable formatted start time.
|
||||||
*
|
|
||||||
* @param bool $is_start_time Whether format the events start or end time.
|
|
||||||
*/
|
*/
|
||||||
protected function format_time( $is_start_time = true ) {
|
protected function format_start_time(): ?string {
|
||||||
$time = $is_start_time ? $this->get_start_time() : $this->get_end_time();
|
return $this->format_time( $this->get_start_time() );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compose a human readable formatted end time.
|
||||||
|
*/
|
||||||
|
protected function format_end_time(): ?string {
|
||||||
|
return $this->format_time( $this->get_end_time() );
|
||||||
|
}
|
||||||
|
|
||||||
|
static protected function format_time( $time ) {
|
||||||
if ( is_null( $time ) ) {
|
if ( is_null( $time ) ) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
@ -228,8 +236,8 @@ abstract class Event extends Post {
|
||||||
remove_filter( 'activitypub_object_content_template', array( self::class, 'remove_ap_permalink_from_template' ) );
|
remove_filter( 'activitypub_object_content_template', array( self::class, 'remove_ap_permalink_from_template' ) );
|
||||||
|
|
||||||
$category = $this->format_category();
|
$category = $this->format_category();
|
||||||
$start_time = $this->format_time();
|
$start_time = $this->format_start_time();
|
||||||
$end_time = $this->format_time( false );
|
$end_time = $this->format_end_time();
|
||||||
$address = $this->format_address();
|
$address = $this->format_address();
|
||||||
|
|
||||||
$formatted_items = array();
|
$formatted_items = array();
|
||||||
|
|
Loading…
Reference in a new issue