HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/lcc.kaunokolegija.lt/wp-content/plugins/codepress-admin-columns/classes/Groups.php
<?php

namespace AC;

final class Groups {

	private $groups;

	public const SORT_PRIORITY = 1;
	public const SORT_SLUG = 2;
	public const SORT_LABEL = 3;

	public function __construct( array $groups = [] ) {
		$this->groups = $groups;
	}

	public function get_all( $sort_by = null ): array {
		switch ( $sort_by ) {
			case self::SORT_LABEL :
				return $this->sort_groups_by_string( $this->groups, 'label' );
			case self::SORT_SLUG :
				return $this->sort_groups_by_string( $this->groups, 'slug' );
			default :
				return $this->sort_groups_by_priority( $this->groups );
		}
	}

	private function sort_groups_by_priority( array $groups ): array {
		$aggregated = $sorted = [];

		foreach ( $groups as $group ) {
			$aggregated[ $group['priority'] ][] = $group;
		}

		ksort( $aggregated, SORT_NUMERIC );

		foreach ( $aggregated as $_groups ) {
			$sorted = array_merge( $sorted, $this->sort_groups_by_string( $_groups, 'label' ) );
		}

		return $sorted;
	}

	private function sort_groups_by_string( array $groups, string $key ): array {
		$sorted = [];

		foreach ( $groups as $k => $group ) {
			$sorted[ $k ] = $group[ $key ];
		}

		natcasesort( $sorted );

		foreach ( array_keys( $sorted ) as $k ) {
			$sorted[ $k ] = $groups[ $k ];
		}

		return $sorted;
	}

	public function get( string $slug ): ?array {
		return $this->groups[ $slug ] ?? null;
	}

	public function register_group( string $slug, string $label, int $priority = 10 ): bool {
		return $this->add( $slug, $label, $priority );
	}

	public function add( string $slug, string $label, int $priority = 10 ): bool {
		if ( isset( $this->groups[ $slug ] ) ) {
			return false;
		}

		$this->groups[ $slug ] = [
			'slug'     => $slug,
			'label'    => $label,
			'priority' => $priority,
		];

		return true;
	}

}