/webtrees/app/ |
H A D | Date.php | 181 $tmp = $d1 . $conv1; 183 $tmp .= '(' . e($this->text) . ')'; 188 $tmp = I18N::translate('about %s', $d1 . $conv1); 192 $tmp = I18N::translate('calculated %s', $d1 . $conv1); 196 $tmp = I18N::translate('estimated %s', $d1 . $conv1); 200 $tmp = I18N::translate('interpreted %s (%s)', $d1 . $conv1, e($this->text)); 204 $tmp = I18N::translate('before %s', $d1 . $conv1); 208 $tmp = I18N::translate('after %s', $d1 . $conv1); 212 $tmp = I18N::translate('from %s', $d1 . $conv1); 216 $tmp = I18N::translate('to %s', $d1 . $conv1); [all …]
|
H A D | Individual.php | 545 $tmp = $this->getDeathDate(); 546 if ($tmp->isOK()) { 547 … $min[] = $tmp->minimumJulianDay() - 365 * (int) $this->tree->getPreference('MAX_ALIVE_AGE'); 548 $max[] = $tmp->maximumJulianDay(); 551 $tmp = $family->getMarriageDate(); 552 if ($tmp->isOK()) { 553 $min[] = $tmp->maximumJulianDay() - 365; 554 $max[] = $tmp->minimumJulianDay() + 365 * 30; 558 $tmp = $husband->getBirthDate(); 559 if ($tmp->isOK()) { [all …]
|
H A D | GedcomRecord.php | 465 $tmp = $this->getAllNames(); 467 return $tmp[$this->getPrimaryName()]['full']; 481 $tmp = $this->getAllNames(); 483 return $tmp[$this->getPrimaryName()]['sort'];
|
/webtrees/resources/views/ |
H A D | calendar-page.phtml | 53 <b><?php $tmp = new Date($today->format('%@ %A %O %E')); echo $tmp->display() ?></b> variable 236 $tmp = $cal_date->convertToCalendar($newcal); variable 237 if ($tmp->inValidRange()) { 241 …tmp) === get_class($cal_date) ? 'class="error"' : '') . ' href="' . e(route(CalendarPage::class, […
|
/webtrees/app/Http/RequestHandlers/ |
H A D | CalendarEvents.php | 134 $tmp = $fact->date()->minimumDate(); 135 if ($tmp->day >= 1 && $tmp->day <= $tmp->daysInMonth()) { 212 $tmp = new Date($cal_date->format('%@ ' . $d . ' %O %E')); 213 $d_fmt = $tmp->minimumDate()->format('%j'); 264 $tmp = Registry::gedcomRecordFactory()->make((string) $xref, $tree); 265 $html .= '<a href="' . e($tmp->url()) . '">' . $tmp->fullName() . '</a> ';
|
H A D | MapDataAdd.php | 85 $tmp = $parent; 86 while ($tmp->id() !== null) { 87 … $breadcrumbs[route(MapDataList::class, ['parent_id' => $tmp->id()])] = e($tmp->locationName()); 89 $tmp = $tmp->parent();
|
H A D | MapDataEdit.php | 81 $tmp = $location; 82 while ($tmp->id() !== null) { 83 … $breadcrumbs[route(MapDataList::class, ['parent_id' => $tmp->id()])] = e($tmp->locationName()); 85 $tmp = $tmp->parent();
|
H A D | MapDataList.php | 98 $tmp = $parent->parent(); 100 while ($tmp->id() !== null) { 101 $breadcrumbs[route(self::class, ['parent_id' => $tmp->id()])] = $tmp->locationName(); 103 $tmp = $tmp->parent();
|
H A D | MapDataExportGeoJson.php | 70 for ($tmp = $parent, $hierarchy = []; $tmp->id() !== null; $tmp = $tmp->parent()) { 71 $hierarchy[] = $tmp->locationName();
|
H A D | MapDataExportCSV.php | 78 for ($tmp = $parent, $hierarchy = []; $tmp->id() !== null; $tmp = $tmp->parent()) { 79 $hierarchy[] = $tmp->locationName();
|
H A D | SearchAdvancedPage.php | 222 $tmp = strtr($field, ['MOTHER:' => 'INDI:', 'FATHER:' => 'INDI:']); 223 $return[$field] = Registry::elementFactory()->make($tmp)->label();
|
H A D | ManageMediaData.php | 249 $tmp = substr($row[0], strlen($media_directory)); 251 …="static" data-bs-target="#modal-create-media-from-file" data-file="' . e($tmp) . '" data-url="' .…
|
/webtrees/app/Services/ |
H A D | UpgradeService.php | 151 $tmp = fopen('php://memory', 'wb+'); 162 $bytes_written = fwrite($tmp, $data); 177 $bytes = ftell($tmp); 178 rewind($tmp); 179 $filesystem->writeStream($path, $tmp); 180 fclose($tmp);
|
H A D | CalendarService.php | 445 $tmp = new JewishDate([(string) $anniv->year, 'CSH', '1']); 447 if ($anniv->day() === 1 && $tmp->daysInMonth() === 29) { 473 $tmp = new JewishDate([(string) $anniv->year, 'KSL', '1']); 475 if ($anniv->day === 1 && $tmp->daysInMonth() === 29) {
|
H A D | MediaFileService.php | 379 $tmp = $data_filesystem 386 $disk_folders = $disk_folders->concat($tmp);
|
H A D | RelationshipService.php | 2202 $tmp = I18N::translate( 2207 if ($relationship === '' || strlen($tmp) < strlen($relationship)) { 2208 $relationship = $tmp;
|
/webtrees/app/Date/ |
H A D | AbstractCalendarDate.php | 856 $tmp = clone $this; 857 $ymd = $tmp->todayYmd(); 858 $tmp->year = $ymd[0]; 859 $tmp->month = $ymd[1]; 860 $tmp->day = $ymd[2]; 861 $tmp->setJdFromYmd(); 863 return $tmp;
|
/webtrees/app/Report/ |
H A D | ReportParserGenerate.php | 698 $tmp = Registry::gedcomRecordFactory()->make($attrs['id'], $this->tree); 699 $newgedrec = $tmp ? $tmp->privatizeGedcom(Auth::accessLevel($this->tree)) : ''; 709 $tmp = Registry::gedcomRecordFactory()->make($match[1], $this->tree); 710 … $newgedrec = $tmp ? $tmp->privatizeGedcom(Auth::accessLevel($this->tree)) : ''; 716 … $tmp = Registry::gedcomRecordFactory()->make($gmatch[1], $this->tree); 717 … $newgedrec = $tmp ? $tmp->privatizeGedcom(Auth::accessLevel($this->tree)) : ''; 1043 $tmp = new Date($value); 1044 $value = strip_tags($tmp->display()); 1047 $tmp = new Place($value, $this->tree); 1048 $value = $tmp->shortName(); [all …]
|
/webtrees/app/Statistics/Repository/ |
H A D | PlaceRepository.php | 119 $tmp = new Place((string) $place, $this->tree); 121 'place' => $tmp, 247 $tmp = new Place($country_name, $this->tree); 250 'place' => $tmp,
|
/webtrees/app/Elements/ |
H A D | AbstractElement.php | 269 $tmp = []; 273 $tmp[$subtag] = $repeat; 275 $tmp[$key] = $value; 278 $this->subtags = $tmp;
|
H A D | RelationIsDescriptor.php | 132 $tmp = $values[$sex] ?? $values['U']; 134 uasort($tmp, I18N::comparator()); 136 return $tmp;
|
/webtrees/app/Module/ |
H A D | RelationshipsChartModule.php | 546 $tmp = implode('-', $exclude); 547 if (in_array($tmp, $excluded, true)) { 551 $excluded[] = $tmp;
|
H A D | StatisticsChartModule.php | 952 $tmp = []; 955 $tmp[$z][$x] = $ydata[$z][$x] ?? 0; 958 $ydata = $tmp;
|
H A D | AbstractIndividualListModule.php | 423 $tmp = array_filter( 429 $surns_to_show = array_merge(...array_values($tmp));
|