Home
last modified time | relevance | path

Searched refs:delete (Results 1 – 25 of 122) sorted by relevance

12345

/webtrees/app/Services/
H A DTreeService.php250 DB::table('gedcom_chunk')->where('gedcom_id', '=', $tree->id())->delete();
282 public function delete(Tree $tree): void function in Fisharebest\\Webtrees\\Services\\TreeService
289 DB::table('gedcom_chunk')->where('gedcom_id', '=', $tree->id())->delete();
290 DB::table('individuals')->where('i_file', '=', $tree->id())->delete();
291 DB::table('families')->where('f_file', '=', $tree->id())->delete();
292 DB::table('sources')->where('s_file', '=', $tree->id())->delete();
293 DB::table('other')->where('o_file', '=', $tree->id())->delete();
294 DB::table('places')->where('p_file', '=', $tree->id())->delete();
295 DB::table('placelinks')->where('pl_file', '=', $tree->id())->delete();
296 DB::table('name')->where('n_file', '=', $tree->id())->delete();
[all …]
H A DGedcomImportService.php299 ->delete();
838 * @param bool $delete
843 public function updateRecord(string $gedrec, Tree $tree, bool $delete): void argument
859 ->delete();
871 ->delete();
877 ->delete();
882 ->delete();
887 ->delete();
894 ->delete();
901 ->delete();
[all …]
H A DUserService.php336 public function delete(User $user): void
347 ->delete();
357 ->delete();
359 DB::table('block')->where('user_id', '=', $user->id())->delete();
360 DB::table('user_gedcom_setting')->where('user_id', '=', $user->id())->delete();
361 DB::table('user_setting')->where('user_id', '=', $user->id())->delete();
362 DB::table('message')->where('user_id', '=', $user->id())->delete();
363 DB::table('user')->where('user_id', '=', $user->id())->delete();
H A DHousekeepingService.php285 ->delete();
297 ->delete();
311 $filesystem->delete($path);
H A DHomePageService.php285 ->delete();
289 ->delete();
342 ->delete();
346 ->delete();
H A DMapDataService.php169 ->delete();
199 ->delete();
H A DUpgradeService.php199 $source->delete($attributes->path());
224 $filesystem->delete($path['path']);
/webtrees/app/Http/RequestHandlers/
H A DModuleDeleteSettings.php53 ->delete();
58 ->delete();
62 ->delete();
66 ->delete();
70 ->delete();
H A DTreePrivacyAction.php53 ->delete();
78 ->delete();
86 ->delete();
94 ->delete();
H A DUsersCleanupAction.php58 $delete = Validator::parsedBody($request)->array('delete');
60 foreach ($delete as $user_id) {
63 $this->user_service->delete($user);
H A DSiteLogsDelete.php51 $this->site_logs_service->logsQuery($request)->delete();
H A DPendingChangesLogDelete.php56 $this->pending_changes_service->changesQuery($params)->delete();
H A DDeleteTreeAction.php57 $this->tree_service->delete($tree);
H A DDeleteUser.php68 $this->user_service->delete($user);
H A DAccountDelete.php62 $this->user_service->delete($user);
H A DDeletePath.php88 $data_filesystem->delete($normalized_path);
H A DSynchronizeTrees.php109 $this->tree_service->delete($tree);
/webtrees/app/
H A DSessionDatabaseHandler.php138 ->delete();
152 ->delete();
H A DCache.php69 $this->cache->delete(md5($key));
/webtrees/app/Module/
H A DStoriesModule.php364 ->delete();
368 ->delete();
H A DFrequentlyAskedQuestionsModule.php190 DB::table('block_setting')->where('block_id', '=', $block_id)->delete();
192 DB::table('block')->where('block_id', '=', $block_id)->delete();
/webtrees/app/Schema/
H A DMigration43.php47 ->delete();
H A DMigration44.php137 ->delete();
/webtrees/resources/css/
H A Dclouds.css385 content: url(clouds/menu/edit-delete.png);
389 content: url(clouds/menu/edit-delete.png);
1301 .wt-icon-delete {
1302 content: url(icons/delete.png);
/webtrees/modules_v4/
H A DREADME.md14 To uninstall it, delete its folder from `/modules_v4`.

12345