File manager - Edit - /home/theblueo/questionnaire/wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-divi-batch.php
Back
<?php /** * Divi Batch Process * * @package CartFlows * @since 1.1.1 */ if ( ! class_exists( 'Cartflows_Importer_Divi_Batch' ) && class_exists( 'WP_Background_Process' ) ) : /** * Image Background Process * * @since 1.1.1 */ class Cartflows_Importer_Divi_Batch extends WP_Background_Process { /** * Image Process * * @var string */ protected $action = 'cartflows_divi_image_process'; /** * 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 1.1.1 * * @param integer $post_id Post Id. * @return mixed */ protected function task( $post_id ) { CartFlows_Importer_Divi::get_instance()->import_single_post( $post_id ); return false; } /** * Complete * * Override if applicable, but ensure that the below actions are * performed, or, call parent::complete(). * * @since 1.1.1 */ protected function complete() { parent::complete(); do_action( 'cartflows_import_complete' ); } } endif;
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings