mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 08:45:45 +00:00

- move and refactor Image.php from Libraries to Entities folder - update some database field names / types - update composer packages
31 lines
717 B
PHP
31 lines
717 B
PHP
<?php
|
|
|
|
/**
|
|
* @copyright 2021 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace App\Libraries;
|
|
|
|
use ActivityPub\Objects\NoteObject as ActivityPubNoteObject;
|
|
use App\Entities\Note;
|
|
|
|
class NoteObject extends ActivityPubNoteObject
|
|
{
|
|
public function __construct(Note $note)
|
|
{
|
|
parent::__construct($note);
|
|
|
|
if ($note->episode_id) {
|
|
$this->content =
|
|
'<a href="' .
|
|
$note->episode->link .
|
|
'" target="_blank" rel="noopener noreferrer">' .
|
|
$note->episode->title .
|
|
'</a><br/>' .
|
|
$note->message_html;
|
|
}
|
|
}
|
|
}
|