File "cleaning.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/vikbooking/admin/helpers/src/task/driver/cleaning.php
File size: 1.17 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* @package VikBooking
* @subpackage core
* @author E4J s.r.l.
* @copyright Copyright (C) 2025 E4J s.r.l. All Rights Reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
* @link https://vikwp.com
*/
// No direct access
defined('ABSPATH') or die('No script kiddies please!');
/**
* Task driver implementation for cleaning.
*
* @since 1.18.0 (J) - 1.8.0 (WP)
*/
class VBOTaskDriverCleaning extends VBOTaskDriveraware
{
use VBOTaskDriverParamsScheduling;
use VBOTaskDriverParamsFiltering;
use VBOTaskDriverParamsDefault;
/**
* @inheritDoc
*/
public function getID()
{
return 'cleaning';
}
/**
* @inheritDoc
*/
public function getName()
{
return JText::translate('VBO_TASK_DRIVER_CLEANING');
}
/**
* @inheritDoc
*/
public function getIcon()
{
return VikBookingIcons::i('broom');
}
/**
* @inheritDoc
*/
public function getParams()
{
return array_merge(
$this->useSchedulingParams(),
$this->useFilteringParams(),
$this->useDefaultParams()
);
}
}