blob: 0b334f15a4ed11172361325e06f96b4588db0a54 (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<?php
/**
* Database Background Process
*
* @package Astra
* @since 2.1.3
*/
if ( class_exists( 'Astra_WP_Background_Process' ) ) :
/**
* Database Background Process
*
* @since 2.1.3
*/
class Astra_Theme_WP_Background_Process extends Astra_WP_Background_Process {
/**
* Database Process
*
* @var string
*/
protected $action = 'astra_theme_db_migration';
/**
* Task
*
* Override this method to perform any actions required on each
* queue item. Return the modified item for further processing
* in the next pass through. Or, return false to remove the
* item from the queue.
*
* @since 2.1.3
*
* @param object $process Queue item object.
* @return mixed
*/
protected function task( $process ) {
do_action( 'astra_batch_process_task_' . $process, $process );
if ( function_exists( $process ) ) {
call_user_func( $process );
}
if ( 'update_db_version' === $process ) {
Astra_Theme_Background_Updater::update_db_version();
}
return false;
}
/**
* Complete
*
* Override if applicable, but ensure that the below actions are
* performed, or, call parent::complete().
*
* @since 2.1.3
*/
protected function complete() {
do_action( 'astra_database_migration_complete' );
parent::complete();
}
}
endif;
|