1 | <?php |
---|
2 | /** |
---|
3 | * Copyright (C) 2014-2025 ServMask Inc. |
---|
4 | * |
---|
5 | * This program is free software: you can redistribute it and/or modify |
---|
6 | * it under the terms of the GNU General Public License as published by |
---|
7 | * the Free Software Foundation, either version 3 of the License, or |
---|
8 | * (at your option) any later version. |
---|
9 | * |
---|
10 | * This program is distributed in the hope that it will be useful, |
---|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
13 | * GNU General Public License for more details. |
---|
14 | * |
---|
15 | * You should have received a copy of the GNU General Public License |
---|
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
17 | * |
---|
18 | * Attribution: This code is part of the All-in-One WP Migration plugin, developed by |
---|
19 | * |
---|
20 | * โโโโโโโโโโโโโโโโโโโโโโโ โโโ โโโโโโโ โโโโ โโโโโโ โโโโโโโโโโโ โโโ |
---|
21 | * โโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโ โโโโ |
---|
22 | * โโโโโโโโโโโโโโ โโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ |
---|
23 | * โโโโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ |
---|
24 | * โโโโโโโโโโโโโโโโโโโ โโโ โโโโโโโ โโโ โโโ โโโโโโ โโโโโโโโโโโโโโ โโโ |
---|
25 | * โโโโโโโโโโโโโโโโโโโ โโโ โโโโโ โโโ โโโโโโ โโโโโโโโโโโโโโ โโโ |
---|
26 | */ |
---|
27 | |
---|
28 | if ( ! defined( 'ABSPATH' ) ) { |
---|
29 | die( 'Kangaroos cannot jump here' ); |
---|
30 | } |
---|
31 | ?> |
---|
32 | |
---|
33 | <div class="error"> |
---|
34 | <p> |
---|
35 | <?php |
---|
36 | echo wp_kses( |
---|
37 | sprintf( |
---|
38 | /* translators: File name. */ |
---|
39 | __( |
---|
40 | 'Could not create <strong>%s</strong> file. Please ensure the parent folder has read/write permissions.', |
---|
41 | 'all-in-one-wp-migration' |
---|
42 | ), |
---|
43 | AI1WM_BACKUPS_ROBOTS_TXT |
---|
44 | ), |
---|
45 | ai1wm_allowed_html_tags() |
---|
46 | ); |
---|
47 | ?> |
---|
48 | </p> |
---|
49 | </div> |
---|