. // }}} namespace App\Entity; use App\Core\DB\DB; use App\Core\Entity; use App\Core\Event; use DateTimeInterface; /** * Entity for relating a RemoteURL to a post * * @category DB * @package GNUsocial * * @author Diogo Peralta Cordeiro * @copyright 2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class RemoteURLToNote extends Entity { // {{{ Autocode // @codeCoverageIgnoreStart private int $remoteurl_id; private int $note_id; private \DateTimeInterface $modified; public function setRemoteURLId(int $remoteurl_id): self { $this->remoteurl_id = $remoteurl_id; return $this; } public function getRemoteURLId(): int { return $this->remoteurl_id; } public function setNoteId(int $note_id): self { $this->note_id = $note_id; return $this; } public function getNoteId(): int { return $this->note_id; } public function setModified(DateTimeInterface $modified): self { $this->modified = $modified; return $this; } public function getModified(): DateTimeInterface { return $this->modified; } /** * Create an instance of RemoteURLToNote or fill in the * properties of $obj with the associative array $args. Doesn't * persist the result * * @param null|mixed $obj */ public static function create(array $args, $obj = null) { $remoteURL = DB::find('remoteurl', ['id' => $args['remoteurl_id']]); $note = DB::find('note', ['id' => $args['note_id']]); Event::handle('NewRemoteURLFromNote', [$remoteURL, $note]); $obj = new self(); return parent::create($args, $obj); } // @codeCoverageIgnoreEnd // }}} Autocode public static function schemaDef(): array { return [ 'name' => 'remoteurl_to_note', 'fields' => [ 'remoteurl_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'remoteurl.id', 'multiplicity' => 'one to one', 'name' => 'remoteurl_to_note_remoteurl_id_fkey', 'not null' => true, 'description' => 'id of remoteurl'], 'note_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Note.id', 'multiplicity' => 'one to one', 'name' => 'remoteurl_to_note_note_id_fkey', 'not null' => true, 'description' => 'id of the note it belongs to'], 'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'], ], 'primary key' => ['remoteurl_id', 'note_id'], 'indexes' => [ 'remoteurl_id_idx' => ['remoteurl_id'], 'note_id_idx' => ['note_id'], ], ]; } }