renamed get_excerpt back to extract_excerpt
Some checks failed
PHP Code Checker / PHP Code Checker (pull_request) Failing after 39s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Successful in 1m19s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Successful in 1m6s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Successful in 1m1s

This commit is contained in:
ruru4143 2024-10-01 18:58:54 +02:00
parent 1a5e19f3c1
commit ad09fa947c
2 changed files with 4 additions and 4 deletions

View file

@ -126,7 +126,7 @@ abstract class Event extends Post {
*
* @return ?string
*/
protected function get_excerpt(): ?string {
protected function extract_excerpt(): ?string {
if ( $this->wp_object->post_excerpt ) {
return $this->wp_object->post_excerpt;
} else {
@ -233,7 +233,7 @@ abstract class Event extends Post {
public function get_summary(): ?string {
// 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 );
$excerpt = $this->get_excerpt();
$excerpt = $this->extract_excerpt();
// BeforeFirstRelease: decide whether this should be a admin setting.
$fallback_to_content = true;
if ( is_null( $excerpt ) && $fallback_to_content ) {

View file

@ -104,11 +104,11 @@ final class VS_Event_List extends Event_Transformer {
*
* @return ?string
*/
protected function get_excerpt(): ?string {
protected function extract_excerpt(): ?string {
if ( get_post_meta( $this->wp_object->ID, 'event-summary', true ) ) {
return get_post_meta( $this->wp_object->ID, 'event-summary', true );
} else {
return parent::get_excerpt();
return parent::extract_excerpt();
}
}
}