VaKeR CYBER ARMY
Logo of a company Server : Apache/2.4.41 (Ubuntu)
System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Directory :  /var/www/html/webtrees/app/Date/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/webtrees/app/Date/HijriDate.php
<?php

/**
 * webtrees: online genealogy
 * Copyright (C) 2023 webtrees development team
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
 */

declare(strict_types=1);

namespace Fisharebest\Webtrees\Date;

use Fisharebest\ExtCalendar\ArabicCalendar;
use Fisharebest\Webtrees\I18N;

/**
 * Definitions for Hijri dates.
 *
 * Note that these are "theoretical" dates.
 * "True" dates are based on local lunar observations, and can be a +/- one day.
 */
class HijriDate extends AbstractCalendarDate
{
    // GEDCOM calendar escape
    public const ESCAPE = '@#DHIJRI@';

    // Convert GEDCOM month names to month numbers
    protected const MONTH_TO_NUMBER = [
        'MUHAR' => 1,
        'SAFAR' => 2,
        'RABIA' => 3,
        'RABIT' => 4,
        'JUMAA' => 5,
        'JUMAT' => 6,
        'RAJAB' => 7,
        'SHAAB' => 8,
        'RAMAD' => 9,
        'SHAWW' => 10,
        'DHUAQ' => 11,
        'DHUAH' => 12,
    ];

    protected const NUMBER_TO_MONTH = [
        1  => 'MUHAR',
        2  => 'SAFAR',
        3  => 'RABIA',
        4  => 'RABIT',
        5  => 'JUMAA',
        6  => 'JUMAT',
        7  => 'RAJAB',
        8  => 'SHAAB',
        9  => 'RAMAD',
        10 => 'SHAWW',
        11 => 'DHUAQ',
        12 => 'DHUAH',
    ];

    /**
     * Create a date from either:
     * a Julian day number
     * day/month/year strings from a GEDCOM date
     * another CalendarDate object
     *
     * @param array<string>|int|AbstractCalendarDate $date
     */
    public function __construct($date)
    {
        $this->calendar = new ArabicCalendar();
        parent::__construct($date);
    }

    /**
     * Full month name in nominative case.
     *
     * @param int  $month
     * @param bool $leap_year Some calendars use leap months
     *
     * @return string
     */
    protected function monthNameNominativeCase(int $month, bool $leap_year): string
    {
        static $translated_month_names;

        if ($translated_month_names === null) {
            $translated_month_names = [
                0  => '',
                /* I18N: https://en.wikipedia.org/wiki/Muharram */
                1  => I18N::translateContext('NOMINATIVE', 'Muharram'),
                /* I18N: https://en.wikipedia.org/wiki/Safar */
                2  => I18N::translateContext('NOMINATIVE', 'Safar'),
                /* I18N: https://en.wikipedia.org/wiki/Rabi%27_al-awwal */
                3  => I18N::translateContext('NOMINATIVE', 'Rabi’ al-awwal'),
                /* I18N: https://en.wikipedia.org/wiki/Rabi%27_al-thani */
                4  => I18N::translateContext('NOMINATIVE', 'Rabi’ al-thani'),
                /* I18N: https://en.wikipedia.org/wiki/Jumada_al-awwal */
                5  => I18N::translateContext('NOMINATIVE', 'Jumada al-awwal'),
                /* I18N: https://en.wikipedia.org/wiki/Jumada_al-thani */
                6  => I18N::translateContext('NOMINATIVE', 'Jumada al-thani'),
                /* I18N: https://en.wikipedia.org/wiki/Rajab */
                7  => I18N::translateContext('NOMINATIVE', 'Rajab'),
                /* I18N: https://en.wikipedia.org/wiki/Sha%27aban */
                8  => I18N::translateContext('NOMINATIVE', 'Sha’aban'),
                /* I18N: https://en.wikipedia.org/wiki/Ramadan_%28calendar_month%29 */
                9  => I18N::translateContext('NOMINATIVE', 'Ramadan'),
                /* I18N: https://en.wikipedia.org/wiki/Shawwal */
                10 => I18N::translateContext('NOMINATIVE', 'Shawwal'),
                /* I18N: https://en.wikipedia.org/wiki/Dhu_al-Qi%27dah */
                11 => I18N::translateContext('NOMINATIVE', 'Dhu al-Qi’dah'),
                /* I18N: https://en.wikipedia.org/wiki/Dhu_al-Hijjah */
                12 => I18N::translateContext('NOMINATIVE', 'Dhu al-Hijjah'),
            ];
        }

        return $translated_month_names[$month];
    }

    /**
     * Full month name in genitive case.
     *
     * @param int  $month
     * @param bool $leap_year Some calendars use leap months
     *
     * @return string
     */
    protected function monthNameGenitiveCase(int $month, bool $leap_year): string
    {
        static $translated_month_names;

        if ($translated_month_names === null) {
            $translated_month_names = [
                0  => '',
                /* I18N: https://en.wikipedia.org/wiki/Muharram */
                1  => I18N::translateContext('GENITIVE', 'Muharram'),
                /* I18N: https://en.wikipedia.org/wiki/Safar */
                2  => I18N::translateContext('GENITIVE', 'Safar'),
                /* I18N: https://en.wikipedia.org/wiki/Rabi%27_al-awwal */
                3  => I18N::translateContext('GENITIVE', 'Rabi’ al-awwal'),
                /* I18N: https://en.wikipedia.org/wiki/Rabi%27_al-thani */
                4  => I18N::translateContext('GENITIVE', 'Rabi’ al-thani'),
                /* I18N: https://en.wikipedia.org/wiki/Jumada_al-awwal */
                5  => I18N::translateContext('GENITIVE', 'Jumada al-awwal'),
                /* I18N: https://en.wikipedia.org/wiki/Jumada_al-thani */
                6  => I18N::translateContext('GENITIVE', 'Jumada al-thani'),
                /* I18N: https://en.wikipedia.org/wiki/Rajab */
                7  => I18N::translateContext('GENITIVE', 'Rajab'),
                /* I18N: https://en.wikipedia.org/wiki/Sha%27aban */
                8  => I18N::translateContext('GENITIVE', 'Sha’aban'),
                /* I18N: https://en.wikipedia.org/wiki/Ramadan_%28calendar_month%29 */
                9  => I18N::translateContext('GENITIVE', 'Ramadan'),
                /* I18N: https://en.wikipedia.org/wiki/Shawwal */
                10 => I18N::translateContext('GENITIVE', 'Shawwal'),
                /* I18N: https://en.wikipedia.org/wiki/Dhu_al-Qi%27dah */
                11 => I18N::translateContext('GENITIVE', 'Dhu al-Qi’dah'),
                /* I18N: https://en.wikipedia.org/wiki/Dhu_al-Hijjah */
                12 => I18N::translateContext('GENITIVE', 'Dhu al-Hijjah'),
            ];
        }

        return $translated_month_names[$month];
    }

    /**
     * Full month name in locative case.
     *
     * @param int  $month
     * @param bool $leap_year Some calendars use leap months
     *
     * @return string
     */
    protected function monthNameLocativeCase(int $month, bool $leap_year): string
    {
        static $translated_month_names;

        if ($translated_month_names === null) {
            $translated_month_names = [
                0  => '',
                /* I18N: https://en.wikipedia.org/wiki/Muharram */
                1  => I18N::translateContext('LOCATIVE', 'Muharram'),
                /* I18N: https://en.wikipedia.org/wiki/Safar */
                2  => I18N::translateContext('LOCATIVE', 'Safar'),
                /* I18N: https://en.wikipedia.org/wiki/Rabi%27_al-awwal */
                3  => I18N::translateContext('LOCATIVE', 'Rabi’ al-awwal'),
                /* I18N: https://en.wikipedia.org/wiki/Rabi%27_al-thani */
                4  => I18N::translateContext('LOCATIVE', 'Rabi’ al-thani'),
                /* I18N: https://en.wikipedia.org/wiki/Jumada_al-awwal */
                5  => I18N::translateContext('LOCATIVE', 'Jumada al-awwal'),
                /* I18N: https://en.wikipedia.org/wiki/Jumada_al-thani */
                6  => I18N::translateContext('LOCATIVE', 'Jumada al-thani'),
                /* I18N: https://en.wikipedia.org/wiki/Rajab */
                7  => I18N::translateContext('LOCATIVE', 'Rajab'),
                /* I18N: https://en.wikipedia.org/wiki/Sha%27aban */
                8  => I18N::translateContext('LOCATIVE', 'Sha’aban'),
                /* I18N: https://en.wikipedia.org/wiki/Ramadan_%28calendar_month%29 */
                9  => I18N::translateContext('LOCATIVE', 'Ramadan'),
                /* I18N: https://en.wikipedia.org/wiki/Shawwal */
                10 => I18N::translateContext('LOCATIVE', 'Shawwal'),
                /* I18N: https://en.wikipedia.org/wiki/Dhu_al-Qi%27dah */
                11 => I18N::translateContext('LOCATIVE', 'Dhu al-Qi’dah'),
                /* I18N: https://en.wikipedia.org/wiki/Dhu_al-Hijjah */
                12 => I18N::translateContext('LOCATIVE', 'Dhu al-Hijjah'),
            ];
        }

        return $translated_month_names[$month];
    }

    /**
     * Full month name in instrumental case.
     *
     * @param int  $month
     * @param bool $leap_year Some calendars use leap months
     *
     * @return string
     */
    protected function monthNameInstrumentalCase(int $month, bool $leap_year): string
    {
        static $translated_month_names;

        if ($translated_month_names === null) {
            $translated_month_names = [
                0  => '',
                /* I18N: https://en.wikipedia.org/wiki/Muharram */
                1  => I18N::translateContext('INSTRUMENTAL', 'Muharram'),
                /* I18N: https://en.wikipedia.org/wiki/Safar */
                2  => I18N::translateContext('INSTRUMENTAL', 'Safar'),
                /* I18N: https://en.wikipedia.org/wiki/Rabi%27_al-awwal */
                3  => I18N::translateContext('INSTRUMENTAL', 'Rabi’ al-awwal'),
                /* I18N: https://en.wikipedia.org/wiki/Rabi%27_al-thani */
                4  => I18N::translateContext('INSTRUMENTAL', 'Rabi’ al-thani'),
                /* I18N: https://en.wikipedia.org/wiki/Jumada_al-awwal */
                5  => I18N::translateContext('INSTRUMENTAL', 'Jumada al-awwal'),
                /* I18N: https://en.wikipedia.org/wiki/Jumada_al-thani */
                6  => I18N::translateContext('INSTRUMENTAL', 'Jumada al-thani'),
                /* I18N: https://en.wikipedia.org/wiki/Rajab */
                7  => I18N::translateContext('INSTRUMENTAL', 'Rajab'),
                /* I18N: https://en.wikipedia.org/wiki/Sha%27aban */
                8  => I18N::translateContext('INSTRUMENTAL', 'Sha’aban'),
                /* I18N: https://en.wikipedia.org/wiki/Ramadan_%28calendar_month%29 */
                9  => I18N::translateContext('INSTRUMENTAL', 'Ramadan'),
                /* I18N: https://en.wikipedia.org/wiki/Shawwal */
                10 => I18N::translateContext('INSTRUMENTAL', 'Shawwal'),
                /* I18N: https://en.wikipedia.org/wiki/Dhu_al-Qi%27dah */
                11 => I18N::translateContext('INSTRUMENTAL', 'Dhu al-Qi’dah'),
                /* I18N: https://en.wikipedia.org/wiki/Dhu_al-Hijjah */
                12 => I18N::translateContext('INSTRUMENTAL', 'Dhu al-Hijjah'),
            ];
        }

        return $translated_month_names[$month];
    }

    /**
     * Abbreviated month name
     *
     * @param int  $month
     * @param bool $leap_year Some calendars use leap months
     *
     * @return string
     */
    protected function monthNameAbbreviated(int $month, bool $leap_year): string
    {
        return $this->monthNameNominativeCase($month, $leap_year);
    }
}

VaKeR 2022