Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 24 of 24) sorted by relevance

/webtrees/app/
H A DDate.php181 $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 DIndividual.php545 $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 DGedcomRecord.php465 $tmp = $this->getAllNames();
467 return $tmp[$this->getPrimaryName()]['full'];
481 $tmp = $this->getAllNames();
483 return $tmp[$this->getPrimaryName()]['sort'];
/webtrees/resources/views/
H A Dcalendar-page.phtml53 <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()) {
241tmp) === get_class($cal_date) ? 'class="error"' : '') . ' href="' . e(route(CalendarPage::class, […
/webtrees/app/Http/RequestHandlers/
H A DCalendarEvents.php134 $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 DMapDataAdd.php85 $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 DMapDataEdit.php81 $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 DMapDataList.php98 $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 DMapDataExportGeoJson.php70 for ($tmp = $parent, $hierarchy = []; $tmp->id() !== null; $tmp = $tmp->parent()) {
71 $hierarchy[] = $tmp->locationName();
H A DMapDataExportCSV.php78 for ($tmp = $parent, $hierarchy = []; $tmp->id() !== null; $tmp = $tmp->parent()) {
79 $hierarchy[] = $tmp->locationName();
H A DSearchAdvancedPage.php222 $tmp = strtr($field, ['MOTHER:' => 'INDI:', 'FATHER:' => 'INDI:']);
223 $return[$field] = Registry::elementFactory()->make($tmp)->label();
H A DManageMediaData.php249 $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 DUpgradeService.php151 $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 DCalendarService.php445 $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 DMediaFileService.php379 $tmp = $data_filesystem
386 $disk_folders = $disk_folders->concat($tmp);
H A DRelationshipService.php2202 $tmp = I18N::translate(
2207 if ($relationship === '' || strlen($tmp) < strlen($relationship)) {
2208 $relationship = $tmp;
/webtrees/app/Date/
H A DAbstractCalendarDate.php856 $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 DReportParserGenerate.php698 $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 DPlaceRepository.php119 $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 DAbstractElement.php269 $tmp = [];
273 $tmp[$subtag] = $repeat;
275 $tmp[$key] = $value;
278 $this->subtags = $tmp;
H A DRelationIsDescriptor.php132 $tmp = $values[$sex] ?? $values['U'];
134 uasort($tmp, I18N::comparator());
136 return $tmp;
/webtrees/app/Module/
H A DRelationshipsChartModule.php546 $tmp = implode('-', $exclude);
547 if (in_array($tmp, $excluded, true)) {
551 $excluded[] = $tmp;
H A DStatisticsChartModule.php952 $tmp = [];
955 $tmp[$z][$x] = $ydata[$z][$x] ?? 0;
958 $ydata = $tmp;
H A DAbstractIndividualListModule.php423 $tmp = array_filter(
429 $surns_to_show = array_merge(...array_values($tmp));