making php_codesniffer happy
Some checks failed
Some checks failed
This commit is contained in:
parent
a66dc74577
commit
b39f9997ae
2 changed files with 9 additions and 6 deletions
|
@ -173,7 +173,10 @@ abstract class Event extends Post {
|
||||||
return $this->format_time( $this->get_end_time() );
|
return $this->format_time( $this->get_end_time() );
|
||||||
}
|
}
|
||||||
|
|
||||||
static private function format_time( $time ) {
|
/**
|
||||||
|
* Compose a human readable formatted time from the parameter $time.
|
||||||
|
*/
|
||||||
|
private static function format_time( $time ) {
|
||||||
if ( is_null( $time ) ) {
|
if ( is_null( $time ) ) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
@ -226,9 +229,9 @@ abstract class Event extends Post {
|
||||||
* @return string $summary The custom event summary.
|
* @return string $summary The custom event summary.
|
||||||
*/
|
*/
|
||||||
public function get_summary(): ?string {
|
public function get_summary(): ?string {
|
||||||
// this will result in race conditions and is imho a bad idea
|
// this will result in race conditions and is imho a bad idea.
|
||||||
// - either use the (userdefined) template of the activitypub plugin as it is
|
// - either use the (userdefined) template of the activitypub plugin as it is.
|
||||||
// - or implement our own templating (based on the activitypub plugin templates / by reusing their code heavily)
|
// - or implement our own templating (based on the activitypub plugin templates / by reusing their code heavily).
|
||||||
add_filter( 'activitypub_object_content_template', array( self::class, 'remove_ap_permalink_from_template' ), 2 );
|
add_filter( 'activitypub_object_content_template', array( self::class, 'remove_ap_permalink_from_template' ), 2 );
|
||||||
$excerpt = $this->extract_excerpt();
|
$excerpt = $this->extract_excerpt();
|
||||||
// BeforeFirstRelease: decide whether this should be a admin setting.
|
// BeforeFirstRelease: decide whether this should be a admin setting.
|
||||||
|
@ -315,7 +318,7 @@ abstract class Event extends Post {
|
||||||
$activitypub_object->set_to(
|
$activitypub_object->set_to(
|
||||||
array(
|
array(
|
||||||
'https://www.w3.org/ns/activitystreams#Public',
|
'https://www.w3.org/ns/activitystreams#Public',
|
||||||
$this->get_actor_object()->get_followers(), // this fails on my machine
|
$this->get_actor_object()->get_followers(), // this fails on my machine.
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,7 @@ final class VS_Event_List extends Event_Transformer {
|
||||||
if ( get_post_meta( $this->wp_object->ID, 'event-summary', true ) ) {
|
if ( get_post_meta( $this->wp_object->ID, 'event-summary', true ) ) {
|
||||||
return get_post_meta( $this->wp_object->ID, 'event-summary', true );
|
return get_post_meta( $this->wp_object->ID, 'event-summary', true );
|
||||||
} else {
|
} else {
|
||||||
return parent::extract_excerpt(); // todo naming not uniform
|
return parent::extract_excerpt(); // todo naming not uniform.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue