social_title_template = $social_title_template;
$this->social_description_template = $social_description_template;
$this->social_image_template = $social_image_template;
$this->social_first_content_image = $social_first_content_image;
}
/**
* Returns the data as an array format.
*
* @return array
*/
public function to_array(): array {
return [
'social_title_template' => $this->social_title_template,
'social_description_template' => $this->social_description_template,
'social_image_template' => $this->social_image_template,
'first_content_image_social_preview' => $this->social_first_content_image,
];
}
/**
* Returns the data as an array format meant for legacy use.
*
* @return array
*/
public function to_legacy_array(): array {
return [
'social_title_template' => $this->social_title_template,
'social_description_template' => $this->social_description_template,
'social_image_template' => $this->social_image_template,
'first_content_image' => $this->social_first_content_image,
];
}
}