Home
last modified time | relevance | path

Searched refs:shared_note (Results 1 – 2 of 2) sorted by relevance

/webtrees/app/
H A DAuth.php396 * @param SharedNote|null $shared_note
403 …public static function checkSharedNoteAccess(SharedNote|null $shared_note, bool $edit = false): Sh… argument
407 if ($shared_note === null) {
411 if ($edit && $shared_note->canEdit()) {
412 $shared_note->lock();
414 return $shared_note;
417 if ($shared_note->canShow()) {
418 return $shared_note;
/webtrees/resources/views/components/
H A Dselect-shared-note.phtml33 <?php if (($shared_note ?? null) instanceof SharedNote) : ?>
34 <option value="<?= e($at . $shared_note->xref() . $at) ?>">
35 <?= view('selects/shared-note', ['note' => $shared_note]) ?>