Lines Matching +full:php +full:- +full:version

1 <?php
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
38 // git diff 1.7.9..master --name-status | grep ^D
41 'themechange.php',
43 'addremotelink.php',
44 'addsearchlink.php',
45 'client.php',
46 'dir_editor.php',
47 'editconfig_gedcom.php',
48 'editgedcoms.php',
49 'edit_merge.php',
50 'edit_news.php',
51 'genservice.php',
52 'logs.php',
53 'manageservers.php',
54 'media.php',
55 'module_admin.php',
56 //'modules', // Do not delete - users may have stored custom modules/data here
57 'opensearch.php',
58 'PEAR.php',
59 'pgv_to_wt.php',
61 //'robots.txt', // Do not delete this - it may contain user data
62 'serviceClientTest.php',
63 'siteconfig.php',
65 'uploadmedia.php',
66 'useradmin.php',
68 'wtinfo.php',
70 'treenav.php',
74 'search_engine.php',
76 'sidebar.php',
79 'login_register.php',
81 'admin_site_ipaddress.php',
82 'downloadgedcom.php',
83 'export_gedcom.php',
84 'gedcheck.php',
87 'imageflush.php',
90 'imageview.php',
96 'downloadbackup.php',
97 'site-php-version.php',
99 'admin_site_other.php',
102 'save.php',
104 'assets/js-1.7.0',
106 'assets/js-1.7.2',
108 'assets/js-1.7.4',
110 'action.php',
111 'addmedia.php',
112 'addmin.php',
113 'admin_media.php',
114 'admin_media_upload.php',
115 'admin_module_blocks.php',
116 'admin_module_charts.php',
117 'admin_module_menus.php',
118 'admin_module_reports.php',
119 'admin_module_sidebar.php',
120 'admin_module_tabs.php',
121 'admin_modules.php',
122 'admin_pgv_to_wt.php',
123 'admin_site_access.php',
124 'admin_site_change.php',
125 'admin_site_clean.php',
126 'admin_site_config.php',
127 'admin_site_info.php',
128 'admin_site_logs.php',
129 'admin_site_merge.php',
130 'admin_site_readme.php',
131 'admin_site_upgrade.php',
132 'admin_trees_check.php',
133 'admin_trees_config.php',
134 'admin_trees_download.php',
135 'admin_trees_duplicates.php',
136 'admin_trees_export.php',
137 'admin_trees_manage.php',
138 'admin_trees_merge.php',
139 'admin_trees_places.php',
140 'admin_trees_renumber.php',
141 'admin_trees_unconnected.php',
142 'admin_users.php',
143 'admin_users_bulk.php',
144 'ancestry.php',
146 'app/HitCounter.php',
147 'app/Module/ClippingsCart/ClippingsCartController.php',
148 'app/Module/FamiliesSidebarModule.php',
151 'app/Module/IndividualSidebarModule.php',
152 'app/Module/PageMenuModule.php',
155 'assets/js-1.7.7',
156 'assets/js-1.7.9',
157 'autocomplete.php',
158 'block_edit.php',
159 'branches.php',
160 'calendar.php',
161 'compact.php',
163 'descendancy.php',
164 'editnews.php',
165 'edituser.php',
166 'edit_changes.php',
167 'edit_interface.php',
168 'expand_view.php',
169 'familybook.php',
170 'famlist.php',
171 'fanchart.php',
172 'find.php',
173 'help_text.php',
174 'hourglass.php',
175 'hourglass_ajax.php',
176 'import.php',
178 'index_edit.php',
179 'indilist.php',
180 'inverselink.php',
182 'lifespan.php',
183 'login.php',
184 'logout.php',
185 'mediafirewall.php',
186 'medialist.php',
187 'message.php',
188 'module.php',
190 'notelist.php',
192 'pedigree.php',
193 'relationship.php',
194 'repolist.php',
195 'reportengine.php',
196 'search.php',
197 'search_advanced.php',
198 'site-offline.php',
199 'site-unavailable.php',
200 'sourcelist.php',
201 'statistics.php',
202 'statisticsplot.php',
204 'timeline.php',
208 'public/favicon-120.png',
209 'public/favicon-144.png',
210 'public/favicon-57.png',
211 'public/favicon-76.png',
212 'public/favicon-96.png',
214 'public/ckeditor-4.11.2-custom',
216 'public/ckeditor-4.14.1-custom',
218 'modules_v4/example-footer.disable',
219 'modules_v4/example-middleware.disable',
220 'modules_v4/example-report.disable',
221 'modules_v4/example-report.disable',
222 'modules_v4/example-server-configuration.disable',
223 'modules_v4/example-theme.disable',
225 'public/favicon-196.png',
230 * Delete files and folders that belonged to an earlier version of webtrees.
242 if (!$this->deleteFileOrFolder($filesystem, $path)) {
261 $threshold = time() - $max_age;
263 $list = $filesystem->listContents($path, FilesystemReader::LIST_DEEP);
270 $this->deleteFileOrFolder($filesystem, $metadata['path']);
283 ->whereIn('log_type', ['error', 'media'])
284 ->where('log_time', '<', date('Y-m-d H:i:s', time() - $max_age_in_seconds))
285 ->delete();
296 ->where('session_time', '<', date('Y-m-d H:i:s', time() - $max_age_in_seconds))
297 ->delete();
311 $filesystem->delete($path);
314 $filesystem->deleteDirectory($path);