Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Upload Files :
Command :
Current File : /home/giriqfky/trustyourlawyer.com/wp-content/plugins/backwpup/src/Adapters//JobTypesAdapter.php
<?php
declare(strict_types=1);
namespace WPMedia\BackWPup\Adapters;
class JobTypesAdapter {
/**
* Get the type array for file jobs.
*
* @return array
*/
public function get_type_job_file(): array {
return \BackWPup_JobTypes::$type_job_files;
}
/**
* Get the type array for database jobs.
*
* @return array
*/
public function get_type_job_database(): array {
return \BackWPup_JobTypes::$type_job_database;
}
/**
* Retrieves an array of job types that are applicable to both conditions.
*
* @return array An array of job types that satisfy both conditions.
*/
public function get_type_job_both(): array {
return \BackWPup_JobTypes::$type_job_both;
}
/**
* Get the name for file jobs.
*
* @return string
*/
public function get_name_job_files(): string {
return \BackWPup_JobTypes::$name_job_files;
}
/**
* Get the name for database jobs.
*
* @return string
*/
public function get_name_job_database(): string {
return \BackWPup_JobTypes::$name_job_database;
}
}