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/Plugin/Version.php
<?php

namespace AC\Plugin;

final class Version
{

    private string $value;

    public function __construct(string $version)
    {
        $this->value = $version;
    }

    public function get_value(): string
    {
        return $this->value;
    }

    public function is_valid(): bool
    {
        return ! empty($this->value);
    }

    public function get_major_version(): int
    {
        $parts = explode('.', $this->value);

        return (int)$parts[0];
    }

    /**
     * Greater than
     */
    public function is_gt(Version $version): bool
    {
        return version_compare($this->value, $version->get_value(), '>');
    }

    /**
     * Less than
     */
    public function is_lt(Version $version): bool
    {
        return version_compare($this->value, $version->get_value(), '<');
    }

    /**
     * Greater than or equal
     */
    public function is_gte(Version $version): bool
    {
        return version_compare($this->value, $version->get_value(), '>=');
    }

    /**
     * Less than or equal
     */
    public function is_lte(Version $version): bool
    {
        return version_compare($this->value, $version->get_value(), '<=');
    }

    public function is_equal(Version $version): bool
    {
        return 0 === version_compare($this->value, $version->get_value());
    }

    public function is_not_equal(Version $version): bool
    {
        return ! $this->is_equal($version);
    }

    public function is_beta(): bool
    {
        return str_contains($this->value, 'beta');
    }

    public function __toString()
    {
        return $this->value;
    }

}