214 lines
4.3 KiB
PHP
214 lines
4.3 KiB
PHP
<?php
|
|
/**
|
|
* 2007-2022 Leotheme
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* LeoElements is module help you can build content for your shop
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* @author Leotheme <leotheme@gmail.com>
|
|
* @copyright 2007-2022 Leotheme
|
|
* @license http://leotheme.com - prestashop template provider
|
|
*/
|
|
|
|
namespace LeoElements\System_Info\Classes\Abstracts;
|
|
|
|
use LeoElements\System_Info\Helpers\Model_Helper;
|
|
use LeoElements\Leo_Helper;
|
|
|
|
if ( ! defined( '_PS_VERSION_' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
/**
|
|
* Elementor base reporter.
|
|
*
|
|
* A base abstract class that provides the needed properties and methods to
|
|
* manage and handle reporter in inheriting classes.
|
|
*
|
|
* @since 1.0.0
|
|
* @abstract
|
|
*/
|
|
abstract class Base_Reporter {
|
|
|
|
/**
|
|
* Reporter properties.
|
|
*
|
|
* Holds the list of all the properties of the report.
|
|
*
|
|
* @access private
|
|
* @static
|
|
*
|
|
* @var array
|
|
*/
|
|
private $_properties;
|
|
|
|
/**
|
|
* Get report title.
|
|
*
|
|
* Retrieve the title of the report.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
* @abstract
|
|
*/
|
|
abstract public function get_title();
|
|
|
|
/**
|
|
* Get report fields.
|
|
*
|
|
* Retrieve the required fields for the report.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
* @abstract
|
|
*/
|
|
abstract public function get_fields();
|
|
|
|
/**
|
|
* Is report enabled.
|
|
*
|
|
* Whether the report is enabled.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
*
|
|
* @return bool Whether the report is enabled.
|
|
*/
|
|
public function is_enabled() {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get report.
|
|
*
|
|
* Retrieve the report with all it's containing fields.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
*
|
|
* @return \WP_Error | array {
|
|
* Report fields.
|
|
*
|
|
* @type string $name Field name.
|
|
* @type string $label Field label.
|
|
* }
|
|
*/
|
|
final public function get_report( $format = '' ) {
|
|
$result = [];
|
|
|
|
$format = ( empty( $format ) ) ? '' : $format . '_';
|
|
|
|
foreach ( $this->get_fields() as $field_name => $field_label ) {
|
|
$method = 'get_' . $format . $field_name;
|
|
|
|
if ( ! method_exists( $this, $method ) ) {
|
|
$method = 'get_' . $field_name;
|
|
//fallback:
|
|
if ( ! method_exists( $this, $method ) ) {
|
|
return new \WP_Error( sprintf( "Getter method for the field '%s' wasn't found in %s.", $field_name, get_called_class() ) );
|
|
}
|
|
}
|
|
|
|
$reporter_field = [
|
|
'name' => $field_name,
|
|
'label' => $field_label,
|
|
];
|
|
|
|
$reporter_field = array_merge( $reporter_field, $this->$method() );
|
|
$result[ $field_name ] = $reporter_field;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Get properties keys.
|
|
*
|
|
* Retrieve the keys of the properties.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
* @static
|
|
*
|
|
* @return array {
|
|
* Property keys.
|
|
*
|
|
* @type string $name Property name.
|
|
* @type string $fields Property fields.
|
|
* }
|
|
*/
|
|
public static function get_properties_keys() {
|
|
return [
|
|
'name',
|
|
'fields',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Filter possible properties.
|
|
*
|
|
* Retrieve possible properties filtered by property keys.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
* @static
|
|
*
|
|
* @param array $properties Properties to filter.
|
|
*
|
|
* @return array Possible properties filtered by property keys.
|
|
*/
|
|
final public static function filter_possible_properties( $properties ) {
|
|
return Model_Helper::filter_possible_properties( self::get_properties_keys(), $properties );
|
|
}
|
|
|
|
/**
|
|
* Set properties.
|
|
*
|
|
* Add/update properties to the report.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
*
|
|
* @param array $key Property key.
|
|
* @param array $value Optional. Property value. Default is `null`.
|
|
*/
|
|
final public function set_properties( $key, $value = null ) {
|
|
if ( is_array( $key ) ) {
|
|
$key = self::filter_possible_properties( $key );
|
|
|
|
foreach ( $key as $sub_key => $sub_value ) {
|
|
$this->set_properties( $sub_key, $sub_value );
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if ( ! in_array( $key, self::get_properties_keys(), true ) ) {
|
|
return;
|
|
}
|
|
|
|
$this->_properties[ $key ] = $value;
|
|
}
|
|
|
|
/**
|
|
* Reporter base constructor.
|
|
*
|
|
* Initializing the reporter base class.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
*
|
|
* @param array $properties Optional. Properties to filter. Default is `null`.
|
|
*/
|
|
public function __construct( $properties = null ) {
|
|
$this->_properties = array_fill_keys( self::get_properties_keys(), null );
|
|
|
|
if ( $properties ) {
|
|
$this->set_properties( $properties, null );
|
|
}
|
|
}
|
|
}
|