1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php // Incoming variable: $screen
$screen->add_help_tab( array( 'id' => 'pb_backupbuddy_backuptypes', 'title' => __( 'Backup Types', 'it-l10n-backupbuddy' ), 'content' => '<p>' . __( '<b>Database backups</b> by default contain WordPress tables which includes posts, pages, comments widget content, media titles & descriptions (but not the media files themselves), and other WordPress settings. Additional inclusions or exclusions may be defined on the Settings page or by modifying the profile below. <br><br> <b>Full backups</b> by default contain everything found in Database backups as well as all files in your WordPress installation directory and its subdirectories. This includes files such as media, plugins, themes, images, and any other files found in your WordPress directory and subdirectories. Additional inclusions or exclusions may be defined on the Settings page or by modifying the profile below. <br><br> <b>Files Only backups</b> omit the database and only backup files. You may customize which files are included or excluded from files only backups using Profiles to customize this to your needs.', 'it-l10n-backupbuddy' ) . '</p>', ));
$screen->add_help_tab( array( 'id' => 'pb_backupbuddy_backupprofiles', 'title' => __( 'Backup Profiles', 'it-l10n-backupbuddy' ), 'content' => '<p>' . __( 'Backup profiles allow you to customize what is backed up and other various backup settings on a case-by-case basis. This allows for greater customization and control. There are three types of profiles which may be created: Complete / Full Backups, Database Only Backups, and Files Only Backups.', 'it-l10n-backupbuddy' ) . '</p>' . __( 'Click the plus (+) icon in the Profiles list to create a new profile. Click the gear icon next to an existing profile to edit it.', 'it-l10n-backupbuddy' ), ));
|