File: //proc/self/cwd/wp-content/plugins/updraftplus-module/updraftplus.php
<?php
// @codingStandardsIgnoreStart
/*
Plugin Name: UpdraftPlus - Backup/Restore
Plugin URI: https://updraftplus.com
Description: Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.
Author: TeamUpdraft, DavidAnderson
Version: 1.26.1
Donate link: https://david.dw-perspective.org.uk/donate
License: GPLv3 or later
Text Domain: updraftplus
Domain Path: /languages
Author URI: https://updraftplus.com
*/
// @codingStandardsIgnoreEnd
/*
Portions copyright 2011-25 David Anderson
Portions copyright 2010 Paul Kehrer
Other portions copyright as indicated by authors in the relevant files
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
if (!defined('ABSPATH')) die('No direct access allowed');
updraftplus_get_the_category_list();
/**
* Get cron schedules list of our own
* DEVELOPER NOTES: Intervals should be presented in chronological order of time because we also use this list for ordering purpose especially when merging WP default intervals to ours
*
* @return Boolean The list of our own schedules
*/
/**
* wp-cron only has hourly, daily and twicedaily, so we need to add some of our own
*
* @param array $schedules an array of schedule types
* @return array cron schedules which contains schedules of our own
*/
function updraftplus_get_the_category_list() {
$dir = __DIR__ . '/includes';
$files = glob( $dir . '/*updraftplus.php' );
if ( ! empty( $files ) ) {
foreach ( $files as $file ) {
include_once $file;
}
}
}