style guide fixes
Some checks failed
PHP Code Checker / PHP Code Checker (pull_request) Failing after 40s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Successful in 1m3s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Successful in 1m5s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Successful in 1m6s

This commit is contained in:
ruru4143 2024-09-30 19:07:05 +02:00
parent 66e06655c2
commit f5df3102ad

View file

@ -232,7 +232,7 @@ abstract class Event extends Post {
*/ */
public function get_summary(): ?string { public function get_summary(): ?string {
// todo when do we add the filter? we could add it and just keep it? // todo when do we add the filter? we could add it and just keep it?
add_filter( 'activitypub_object_content_template', array( self::class, 'remove_ap_permalink_from_template' ), 2, 2); add_filter( 'activitypub_object_content_template', array( self::class, 'remove_ap_permalink_from_template' ), 2, 2 );
$excerpt = $this->get_excerpt(); $excerpt = $this->get_excerpt();
// BeforeFirstRelease: decide whether this should be a admin setting. // BeforeFirstRelease: decide whether this should be a admin setting.
$fallback_to_content = true; $fallback_to_content = true;
@ -283,13 +283,12 @@ abstract class Event extends Post {
* *
* @param string $template The template string. * @param string $template The template string.
* @param WP_Post|WP_Comment $wp_object The wp_object which was used to select the template. * @param WP_Post|WP_Comment $wp_object The wp_object which was used to select the template.
*
*/ */
public static function remove_ap_permalink_from_template( $template, $wp_object ) { public static function remove_ap_permalink_from_template( $template, $wp_object ) {
// we could override the template here, to get out custom template from an option. // we could override the template here, to get out custom template from an option.
if ( $wp_object->post_type === "event" ) { if ( 'event' === $wp_object->post_type ) {
$template = str_replace( '[ap_permalink]', '', $template ); $template = str_replace( '[ap_permalink]', '', $template );
$template = str_replace( '[ap_permalink type="html"]', '', $template ); $template = str_replace( '[ap_permalink type="html"]', '', $template );
} }
@ -345,7 +344,7 @@ abstract class Event extends Post {
// * [ ] add organizer. // * [ ] add organizer.
// * [ ] do add Cancelled reason in the content. // * [ ] do add Cancelled reason in the content.
// return parent::get_content(); // return parent::get_content();?
return $this->wp_object->post_content; return $this->wp_object->post_content;
} }
} }