Sh3ll
OdayForums


Server : LiteSpeed
System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User : claqxcrl ( 523)
PHP Version : 8.1.32
Disable Function : NONE
Directory :  /home/claqxcrl/anfangola.com/wp-content/plugins/matomo/app/plugins/VisitTime/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/claqxcrl/anfangola.com/wp-content/plugins/matomo/app/plugins/VisitTime/functions.php
<?php

/**
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */
namespace Piwik\Plugins\VisitTime;

use Piwik\Container\StaticContainer;
use Piwik\Date;
use Piwik\Piwik;
function getTimeLabel($label)
{
    if (!is_numeric($label)) {
        return Piwik::translate('General_Unknown');
    }
    $time = mktime($label);
    if (empty($time)) {
        return Piwik::translate('General_Unknown');
    }
    $date = Date::factory($time);
    $dateTimeProvider = StaticContainer::get('Piwik\\Intl\\Data\\Provider\\DateTimeFormatProvider');
    if ($dateTimeProvider->uses12HourClock()) {
        return $date->getLocalized(Piwik::translate('Intl_Format_Hour_12'));
    }
    return $date->getLocalized(Piwik::translate('Intl_Format_Hour_24'));
}
/**
 * Returns the day of the week for a date string, without creating a new
 * Date instance.
 *
 * @param string $dateStr
 * @return int The day of the week (1-7)
 */
function dayOfWeekFromDate($dateStr)
{
    return date('N', strtotime($dateStr));
}
/**
 * Returns translated long name of a day of the week.
 *
 * @param int $dayOfWeek 1-7, for Sunday-Saturday
 * @return string
 */
function translateDayOfWeek($dayOfWeek)
{
    return Piwik::translate('Intl_Day_Long_StandAlone_' . $dayOfWeek);
}
/**
 * Returns translated long name for month.
 *
 * @param int $month 1-12, for January-December
 * @return string
 */
function translateMonth($month)
{
    return Piwik::translate('Intl_Month_Long_StandAlone_' . $month);
}

ZeroDay Forums Mini