File: /var/www/wp-content/plugins/pojo-accessibility/modules/remediation/database/remediation-entry.php
<?php
namespace EA11y\Modules\Remediation\Database;
use EA11y\Classes\Database\Entry;
use EA11y\Modules\Remediation\Exceptions\Missing_URL;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Class Page_Entry
*/
class Remediation_Entry extends Entry {
/**
* @var string $url holds page url
*/
private string $url;
public static function get_helper_class(): string {
return Remediation_Table::get_class_name();
}
/**
* Create
*
* used to ensure:
* URL is set
*
* @param string $id
*
* @throws Missing_URL
*/
public function create( string $id = 'id' ) {
if ( empty( $this->entry_data[ Remediation_Table::URL ] ) ) {
throw new Missing_URL();
}
$date_time = gmdate( 'Y-m-d H:i:s' );
$this->entry_data[ Remediation_Table::CREATED_AT ] = $date_time;
$this->entry_data[ Remediation_Table::UPDATED_AT ] = $date_time;
parent::create( $id );
}
/**
* Remove
*
* @param string $by
* @param string $by_value
* @param string|null $group
*/
public static function remove( string $by, string $by_value, ?string $group = null ) {
$where = $group ? [
$by => $by_value,
'group' => $group,
] : [
$by => $by_value,
];
Remediation_Table::delete( $where );
}
/**
* get_page_remediations
*
* @param string $url
* @param bool $total
* @return array
*/
public static function get_page_remediations( string $url, bool $total = false ) : array {
$where = [
[
'column' => Remediation_Table::URL,
'value' => $url,
'operator' => '=',
],
];
$select = $total ? 'COUNT(*) as total' : '*';
return Remediation_Table::select( $select, $where );
}
public static function get_all_remediations( int $period ) : array {
$date_threshold = gmdate( 'Y-m-d', strtotime( "-{$period} days" ) ) . ' 00:00:00';
$where = [
[
'column' => Remediation_Table::CREATED_AT,
'value' => $date_threshold,
'operator' => '>=',
],
];
return Remediation_Table::select( '*', $where );
}
/**
* @param string $by
* @param string $by_value
* @param bool $status
* @param string|null $group
*
* @return void
*/
public static function update_remediations_status( string $by, string $by_value, bool $status, ?string $group = null ): void {
$where = $group ? [
$by => $by_value,
'group' => $group,
] : [
$by => $by_value,
];
$data = [
Remediation_Table::ACTIVE => $status,
];
Remediation_Table::update( $data, $where );
}
/**
* @param string $by
* @param string $by_value
* @param string $content
*
* @return void
*/
public static function update_remediation_content( string $by, string $by_value, string $content ): void {
$where = [
$by => $by_value,
];
$data = [
Remediation_Table::CONTENT => $content,
];
Remediation_Table::update( $data, $where );
}
}