/webtrees/resources/views/lists/ |
H A D | sources-table.phtml | 109 <?php foreach ($sources as $source) : ?> 110 …<tr class="<?= $source->isPendingAddition() ? 'wt-new' : '' ?> <?= $source->isPendingDeletion() ? … 112 <td data-sort="<?= e($source->sortName()) ?>"> 113 <a href="<?= e($source->url()) ?>"> 114 <?= $source->fullName() ?> 120 … <?= e($source->facts(['ABBR'])->isNotEmpty() ? $source->facts(['ABBR'])->first()->value() : '') ?> 125 … <?= e($source->facts(['AUTH'])->isNotEmpty() ? $source->facts(['AUTH'])->first()->value() : '') ?> 130 …egistry::elementFactory()->make('SOUR:PUBL')->value($source->facts(['PUBL'])->isNotEmpty() ? $sour… 134 <td class="text-center" data-sort="<?= $count_individuals[$source->xref()] ?? 0 ?>"> 135 <?= I18N::number($count_individuals[$source->xref()] ?? 0) ?> [all …]
|
/webtrees/ |
H A D | composer.lock | 12 "source": { 58 "source": "https://github.com/auraphp/Aura.Router/tree/3.3.0" 65 "source": { 112 "source": "https://github.com/brick/math/tree/0.12.1" 125 "source": { 173 "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0" 194 "source": { 262 "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" 269 "source": { 339 "source": "https://github.com/doctrine/inflector/tree/2.0.10" [all …]
|
H A D | LICENSE.md | 28 them if you wish), that you receive source code or can get it if you 40 or can get the source code. And you must show them these terms so they 117 The “source code” for a work means the preferred form of the work 118 for making modifications to it. “Object code” means any non-source 131 implementation is available to the public in source code form. A 138 the source code needed to generate, install, and (for an executable 144 includes interface definition files associated with source files for 145 the work, and the source code for shared libraries and dynamically 154 The Corresponding Source for a work in source code form is that 200 You may convey verbatim copies of the Program’s source code as you [all …]
|
H A D | CONTRIBUTING.md | 66 ## Third-party libraries and compiled files in the source tree 69 files in our source tree. This is usually considered to be bad practice. 71 accustomed to downloading the latest source code and running it without any build step.
|
/webtrees/app/Module/ |
H A D | ClippingsCartModule.php | 678 foreach ($this->linked_record_service->linkedSources($repository) as $source) { 679 $this->addSourceToCart($source); 689 $source = Registry::sourceFactory()->make($xref, $tree); 690 $source = Auth::checkSourceAccess($source); 691 $name = $source->fullName(); 702 'record' => $source, 714 $source = Registry::sourceFactory()->make($xref, $tree); 715 $source = Auth::checkSourceAccess($source); 717 $this->addSourceToCart($source); 720 foreach ($this->linked_record_service->linkedIndividuals($source) as $individual) { [all …]
|
H A D | RecentChangesModule.php | 108 $source = $this->getBlockSetting($block_id, 'source', self::DEFAULT_SOURCE); 112 if ($source === self::SOURCE_DATABASE) { 218 $source = Validator::parsedBody($request)->string('source'); 225 $this->setBlockSetting($block_id, 'source', $source); 243 $source = $this->getBlockSetting($block_id, 'source', self::DEFAULT_SOURCE); 275 'source' => $source,
|
/webtrees/app/Http/RequestHandlers/ |
H A D | AutoCompleteCitation.php | 49 $source = Registry::sourceFactory()->make($xref, $tree); 50 $source = Auth::checkSourceAccess($source); 62 ->where('l_to', '=', $source->xref()) 78 ->where('l_to', '=', $source->xref()) 89 …if (preg_match_all('/\n1 SOUR @' . $source->xref() . '@(?:\n[2-9].*)*\n2 PAGE (.*' . $regex_query … 93 …if (preg_match_all('/\n2 SOUR @' . $source->xref() . '@(?:\n[3-9].*)*\n3 PAGE (.*' . $regex_query …
|
H A D | TomSelectSource.php | 62 $source = Registry::sourceFactory()->make($query, $tree); 64 if ($source instanceof Source) { 65 $results = new Collection([$source]); 71 return $results->map(static fn (Source $source): array => [ 72 'text' => view('selects/source', ['source' => $source]), 73 'value' => $at . $source->xref() . $at,
|
H A D | RedirectSourcePhp.php | 51 $source = Registry::sourceFactory()->make($sid, $tree); 53 if ($source instanceof Source) { 54 $url = $source->url();
|
H A D | ImportGedcomAction.php | 76 …$source = Validator::parsedBody($request)->isInArray(['client', 'server'])->string('so… 83 if ($source === 'client') { 99 if ($source === 'server') {
|
H A D | MapDataImportAction.php | 83 … $source = Validator::parsedBody($request)->isInArray(['client', 'server'])->string('source'); 90 if ($source === 'client') { 106 if ($source === 'server') {
|
/webtrees/app/ |
H A D | Auth.php | 483 * @param Source|null $source 490 public static function checkSourceAccess(Source|null $source, bool $edit = false): Source argument 494 if ($source === null) { 498 if ($edit && $source->canEdit()) { 499 $source->lock(); 501 return $source; 504 if ($source->canShow()) { 505 return $source;
|
/webtrees/resources/views/ |
H A D | fact-gedcom-fields.phtml | 56 <?php $source = Registry::sourceFactory()->make($match[1], $tree) ?> variable 57 <?php if ($source instanceof Source) : ?> 73 …php $value = '<span class="field" dir="auto"><a href="' . e($source->url()) . '">' . $source->full…
|
/webtrees/app/Services/ |
H A D | UpgradeService.php | 188 * @param FilesystemOperator $source 194 public function moveFiles(FilesystemOperator $source, FilesystemOperator $destination): void argument 196 foreach ($source->listContents('', FilesystemReader::LIST_DEEP) as $attributes) { 198 $destination->write($attributes->path(), $source->read($attributes->path())); 199 $source->delete($attributes->path());
|
/webtrees/resources/views/components/ |
H A D | select-source.phtml | 33 <?php if (($source ?? null) instanceof Source) : ?> 34 <option value="<?= e($at . $source->xref() . $at) ?>"> 35 <?= view('selects/source', ['source' => $source]) ?>
|
/webtrees/resources/views/modules/random_media/ |
H A D | slide-show.phtml | 82 <?php foreach ($linked_sources as $source) : ?> 85 <a href="<?= e($source->url()) ?>" class="wt-slide-show-link"> 86 <?= $source->fullName() ?>
|
/webtrees/app/Statistics/Repository/ |
H A D | GedcomRepository.php | 60 $source = ''; 68 $source = $sour->value(); 77 $source,
|
/webtrees/public/ckeditor-4.15.1-custom/ |
H A D | LICENSE.md | 95 this service if you wish), that you receive source code or can get it 107 source code. And you must show them these terms so they know their 151 source code as you receive it, in any medium, provided that you 210 source code, which must be distributed under the terms of Sections 215 cost of physically performing source distribution, a complete 216 machine-readable copy of the corresponding source code, to be 221 to distribute corresponding source code. (This alternative is 226 The source code for a work means the preferred form of the work for 227 making modifications to it. For an executable work, complete source 228 code means all the source code for all modules it contains, plus any [all …]
|
/webtrees/tests/app/Http/RequestHandlers/ |
H A D | RedirectSourcePhpTest.php | 53 $source = $this->createMock(Source::class); 54 $source
|
/webtrees/public/ckeditor-4.15.1-custom/skins/moono/ |
H A D | readme.md | 18 - graphics source provided in SVG. 42 - **dev/**: contains SVG source of the skin icons.
|
/webtrees/resources/views/selects/ |
H A D | source.phtml | 12 <?= $source->fullName() ?>
|
/webtrees/resources/views/modules/recent_changes/ |
H A D | config.phtml | 54 …<?= view('components/select', ['name' => 'source', 'selected' => $source, 'options' => $sources]) …
|
/webtrees/public/ckeditor-4.15.1-custom/plugins/pastetools/filter/ |
H A D | image.js | 5 …\{\\pict\{\\\*[^*]+?)\\(?:jpeg|png)blip/,d;b=b.match(new RegExp("(?:("+a.source+"))([\\da-fA-F\\s]…
|
/webtrees/resources/css/ |
H A D | _list-sources.css | 19 * wt-route-source-list
|
/webtrees/resources/lang/en-GB/ |
H A D | messages.po | 349 msgid "%s source has been updated." 351 msgstr[0] "%s source has been updated." 908 msgid "A report of facts which are supported by a given source." 909 msgstr "A report of facts which are supported by a given source." 965 msgid "A report of the information provided by a source." 966 msgstr "A report of the information provided by a source." 1124 #: resources/views/modals/source-fields.phtml:24 1352 msgid "Add a source citation" 1353 msgstr "Add a source citation" 1925 msgid "Ancestry.com source identifier" [all …]
|