Home
last modified time | relevance | path

Searched refs:Source (Results 1 – 25 of 123) sorted by relevance

12345

/webtrees/app/Factories/
H A DSourceFactory.php26 use Fisharebest\Webtrees\Source; alias
36 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Source::RECORD_TYPE . '/';
41 public function make(string $xref, Tree $tree, string|null $gedcom = null): Source|null
66 return fn (object $row): Source => $this->make($row->s_id, $tree, $row->s_gedcom);
78 * @return Source
80 public function new(string $xref, string $gedcom, string|null $pending, Tree $tree): Source
82 return new Source($xref, $gedcom, $pending, $tree);
H A DGedcomRecordFactory.php35 use Fisharebest\Webtrees\Source; alias
68 case Source::RECORD_TYPE:
163 case Source::RECORD_TYPE:
/webtrees/app/Contracts/
H A DSourceFactoryInterface.php23 use Fisharebest\Webtrees\Source; alias
34 public function make(string $xref, Tree $tree, string|null $gedcom = null): Source|null;
54 * @return Source
56 public function new(string $xref, string $gedcom, string|null $pending, Tree $tree): Source;
/webtrees/
H A DLICENSE.md115 ### 1. Source Code.
137 The “Corresponding Source” for a work in object code form means all
143 which are not part of the work. For example, Corresponding Source
150 The Corresponding Source need not include anything that users
152 Source.
154 The Corresponding Source for a work in source code form is that
211 ### 5. Conveying Modified Source Versions.
248 ### 6. Conveying Non-Source Forms.
252 machine-readable Corresponding Source under the terms of this License,
257 Corresponding Source fixed on a durable physical medium
[all …]
/webtrees/resources/views/components/
H A Dselect-source.phtml7 use Fisharebest\Webtrees\Source; alias
12 * @var Source|null $source
33 <?php if (($source ?? null) instanceof Source) : ?>
/webtrees/app/Http/RequestHandlers/
H A DTomSelectSource.php24 use Fisharebest\Webtrees\Source; alias
64 if ($source instanceof Source) {
71 return $results->map(static fn (Source $source): array => [
H A DMergeRecordsPage.php31 use Fisharebest\Webtrees\Source; alias
72 'source1' => $record1 instanceof Source ? $record1 : null,
73 'source2' => $record2 instanceof Source ? $record2 : null,
H A DRedirectSourcePhp.php27 use Fisharebest\Webtrees\Source; alias
53 if ($source instanceof Source) {
H A DCheckTree.php51 use Fisharebest\Webtrees\Source; alias
242 … } elseif ($element instanceof XrefSource && $linked->type !== Source::RECORD_TYPE) {
243 … $message = $this->linkErrorMessage($tree, $xref1, $linked->type, Source::RECORD_TYPE);
357 Source::RECORD_TYPE => I18N::translate('Source'),
H A DGedcomRecordPage.php34 use Fisharebest\Webtrees\Source; alias
62 Source::class,
/webtrees/resources/views/admin/
H A Dmerge-records-step-1.phtml15 use Fisharebest\Webtrees\Source; alias
33 * @var Source|null $source1
34 * @var Source|null $source2
/webtrees/app/
H A DAuth.php483 * @param Source|null $source
486 * @return Source
490 public static function checkSourceAccess(Source|null $source, bool $edit = false): Source
/webtrees/resources/views/selects/
H A Dsource.phtml5 use Fisharebest\Webtrees\Source; alias
8 * @var Source $source
/webtrees/app/Module/
H A DFixSearchAndReplace.php33 use Fisharebest\Webtrees\Source; alias
108 Source::RECORD_TYPE => I18N::translate('Sources'),
272 if ($params['type'] !== Source::RECORD_TYPE || $params['search-for'] === '') {
H A DSiteMapModule.php37 use Fisharebest\Webtrees\Source; alias
69 Source::RECORD_TYPE => 0.5,
333 case Source::RECORD_TYPE:
/webtrees/resources/views/icons/
H A Drecord.phtml12 use Fisharebest\Webtrees\Source; alias
23 <?php elseif ($record->tag() === Source::RECORD_TYPE) : ?>
/webtrees/resources/views/modules/sitemap/
H A Dsitemap-index-xml.phtml10 use Fisharebest\Webtrees\Source; alias
101 …<?= e(route('sitemap-file', ['tree' => $tree_name, 'type' => Source::RECORD_TYPE, 'page' => $i])) …
/webtrees/tests/app/Http/RequestHandlers/
H A DRedirectSourcePhpTest.php29 use Fisharebest\Webtrees\Source; alias
53 $source = $this->createMock(Source::class);
/webtrees/resources/views/modules/recent_changes/
H A Dchanges-table.phtml12 use Fisharebest\Webtrees\Source; alias
72 <?php elseif ($row->record->tag() === Source::RECORD_TYPE) : ?>
/webtrees/tests/app/Elements/
H A DXrefSourceTest.php25 use Fisharebest\Webtrees\Source; alias
96 $record = $this->createMock(Source::class);
/webtrees/resources/views/
H A Dfact-gedcom-fields.phtml11 use Fisharebest\Webtrees\Source; alias
57 <?php if ($source instanceof Source) : ?>
/webtrees/app/Services/
H A DDataFixService.php31 use Fisharebest\Webtrees\Source; alias
67 case Source::RECORD_TYPE:
H A DAdminService.php32 use Fisharebest\Webtrees\Source; alias
126 …->map(static fn (string $xrefs): array => array_map(static fn (string $xref): Source => Registry::…
H A DPendingChangesService.php39 use Fisharebest\Webtrees\Source; alias
106 Source::RECORD_TYPE => Registry::sourceFactory(),
/webtrees/public/ckeditor-4.15.1-custom/
H A DLICENSE.md493 "Source code" for a work means the preferred form of the work for
845 1.5. "Executable" means Covered Code in any form other than Source
849 as the Initial Developer in the Source Code notice required by Exhibit
871 1.10. "Original Code" means Source Code of computer software code
872 which is described in the Source Code notice required by Exhibit A as
880 1.11. "Source Code" means the preferred form of the Covered Code for
886 Source Code can be in a compressed or archival form, provided the
901 2. Source Code License.
967 Section 2.2. The Source Code version of Covered Code may be
970 copy of this License with every copy of the Source Code You
[all …]

12345