plugin updates

This commit is contained in:
Tony Volpe
2024-10-11 13:25:50 -04:00
parent 5e5b879a68
commit a6fc17dcaa
391 changed files with 6812 additions and 4326 deletions

View File

@@ -366,7 +366,8 @@ class Image_Helper {
}
/**
* Based on and image ID return array with the best variation of that image. If it's not saved to the DB, save it to an option.
* Based on and image ID return array with the best variation of that image. If it's not saved to the DB, save it
* to an option.
*
* @param string $setting The setting name. Should be company or person.
*

View File

@@ -22,4 +22,107 @@ class Notification_Helper {
public function restore_notification( Yoast_Notification $notification ) {
return Yoast_Notification_Center::restore_notification( $notification );
}
/**
* Return the notifications sorted on type and priority. (wrapper function)
*
* @codeCoverageIgnore
*
* @return array|Yoast_Notification[] Sorted Notifications
*/
public function get_sorted_notifications() {
$notification_center = Yoast_Notification_Center::get();
return $notification_center->get_sorted_notifications();
}
/**
* Check if the user has dismissed a notification. (wrapper function)
*
* @param Yoast_Notification $notification The notification to check for dismissal.
* @param int|null $user_id User ID to check on.
*
* @codeCoverageIgnore
*
* @return bool
*/
private function is_notification_dismissed( Yoast_Notification $notification, $user_id = null ) {
return Yoast_Notification_Center::is_notification_dismissed( $notification, $user_id );
}
/**
* Parses all the notifications to an array with just warnings notifications, and splitting them between dismissed
* and active.
*
* @return array<Yoast_Notification>
*/
public function get_notifications(): array {
$all_notifications = $this->get_sorted_notifications();
$notifications = \array_filter(
$all_notifications,
static function ( $notification ) {
return $notification->get_type() !== 'error';
}
);
$dismissed_notifications = \array_filter(
$notifications,
function ( $notification ) {
return $this->is_notification_dismissed( $notification );
}
);
$active_notifications = \array_diff( $notifications, $dismissed_notifications );
return [
'dismissed' => \array_map(
static function ( $notification ) {
return $notification->to_array();
},
$dismissed_notifications
),
'active' => \array_map(
static function ( $notification ) {
return $notification->to_array();
},
$active_notifications
),
];
}
/**
* Parses all the notifications to an array with just error notifications, and splitting them between dismissed and
* active.
*
* @return array<Yoast_Notification>
*/
public function get_problems(): array {
$all_notifications = $this->get_sorted_notifications();
$problems = \array_filter(
$all_notifications,
static function ( $notification ) {
return $notification->get_type() === 'error';
}
);
$dismissed_problems = \array_filter(
$problems,
function ( $notification ) {
return $this->is_notification_dismissed( $notification );
}
);
$active_problems = \array_diff( $problems, $dismissed_problems );
return [
'dismissed' => \array_map(
static function ( $notification ) {
return $notification->to_array();
},
$dismissed_problems
),
'active' => \array_map(
static function ( $notification ) {
return $notification->to_array();
},
$active_problems
),
];
}
}