File "rule.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/vikbooking/admin/helpers/src/backup/export/rule.php
File size: 2.01 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/** 
 * @package     VikBooking
 * @subpackage  core
 * @author      E4J s.r.l.
 * @copyright   Copyright (C) 2021 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!');

/**
 * Backup export rule abstraction.
 * 
 * @since 1.5
 */
abstract class VBOBackupExportRule implements JsonSerializable
{
	/**
	 * The instance used to manage the archive.
	 * 
	 * @var VBOBackupExportArchive
	 */
	protected $archive;

	/**
	 * Class constructor.
	 * Children classes cannot overwrite this method.
	 * @see setup()
	 * 
	 * @param 	VBOBackupExportArchive  $archive  The archive manager.
	 * @param 	mixed 	                $data     The rule setup data.
	 */
	final public function __construct(VBOBackupExportArchive $archive, $data = null)
	{
		// save a reference to the archive
		$this->archive = $archive;
		// set up the rule data
		$this->setup($data);
	}

	/**
	 * Returns the rule identifier.
	 * 
	 * @return 	string
	 */
	public function getRule()
	{
		// remove the class prefix
		$rule = preg_replace("/^VBOBackupExportRule/", '', get_class($this));
		// place an underscore between each camelCase
		return strtolower(preg_replace("/([a-z])([A-Z])/", '$1_$2', $rule));
	}

	/**
	 * Returns the rules instructions.
	 * 
	 * @return 	mixed
	 */
	abstract public function getData();

	/**
	 * Configures the rule to work according to the specified data.
	 * 
	 * @param 	mixed 	$data  The rule setup data.
	 * 
	 * @return 	void
	 */
	abstract protected function setup($data);

	/**
	 * Creates a standard object, containing all the supported properties,
	 * to be used when this class is passed to "json_encode()".
	 *
	 * @return  object
	 *
	 * @see     JsonSerializable
	 */
	public function jsonSerialize()
	{
		$rule = new stdClass;
		$rule->role        = $this->getRule();
		$rule->data        = $this->getData();
		$rule->dateCreated = JFactory::getDate()->toSql();

		return $rule;
	}
}