public static function PersianDateFactory::buildFromTimestamp in Persian Date for Drupal 8 8.4
Same name and namespace in other branches
- 8 src/Converter/PersianDateFactory.php \Drupal\persian_date\Converter\PersianDateFactory::buildFromTimestamp()
Parameters
integer $timestamp:
\DateTimeZone $timezone:
Return value
1 call to PersianDateFactory::buildFromTimestamp()
- PersianDateFormatter::format in src/
Service/ Formatter/ PersianDateFormatter.php - Formats a date, using a date type or a custom date format string.
File
- src/
Converter/ PersianDateFactory.php, line 67
Class
- PersianDateFactory
- This class is responsible to build Persian DateTime instances.
Namespace
Drupal\persian_date\ConverterCode
public static function buildFromTimestamp($timestamp, \DateTimeZone $timezone = null) {
$dateTime = new PersianDate();
$dateTime
->setTimestamp($timestamp);
if ($timezone) {
$dateTime
->setTimezone($timezone);
}
return $dateTime;
}