File manager - Edit - /home/theblueo/questionnaire/wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-elementor-batch.php
Back
<?php /** * Elementor Batch Process * * @package CartFlows * @since 1.0.0 */ if ( ! class_exists( 'Cartflows_Importer_Elementor_Batch' ) && class_exists( 'WP_Background_Process' ) ) : /** * Image Background Process * * @since 1.1.1 Updated class name with Elementor specific. * * @since 1.0.0 */ class Cartflows_Importer_Elementor_Batch extends WP_Background_Process { /** * Image Process * * @var string */ protected $action = 'cartflows_elementor_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.0.0 * * @param integer $post_id Post Id. * @return mixed */ protected function task( $post_id ) { $obj = new \Elementor\TemplateLibrary\CartFlows_Importer_Elementor(); $obj->import_single_template( $post_id ); return false; } /** * Complete * * Override if applicable, but ensure that the below actions are * performed, or, call parent::complete(). * * @since 1.0.0 */ protected function complete() { parent::complete(); do_action( 'cartflows_import_complete' ); } } endif;
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings