File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/src/Application/Services/Settings/SettingsService.php
Back
<?php /** * @copyright © TMS-Plugins. All rights reserved. * @licence See LICENCE.md for license details. */ namespace AmeliaBooking\Application\Services\Settings; use AmeliaBooking\Domain\Services\DateTime\DateTimeService; use AmeliaBooking\Infrastructure\Common\Container; /** * Class SettingsService * * @package AmeliaBooking\Application\Services\Settings */ class SettingsService { /** @var Container */ private $container; /** * ProviderApplicationService constructor. * * @param Container $container * * @throws \InvalidArgumentException */ public function __construct(Container $container) { $this->container = $container; } /** * @return array * @throws \Exception * @throws \Interop\Container\Exception\ContainerException + */ public function getGlobalDaysOff() { $daysOff = []; /** @var \AmeliaBooking\Domain\Services\Settings\SettingsService $settingsDS */ $settingsDS = $this->container->get('domain.settings.service'); $settingsDaysOff = $settingsDS->getCategorySettings('daysOff'); foreach ($settingsDaysOff as $settingsDayOff) { $dayOffPeriod = new \DatePeriod( DateTimeService::getCustomDateTimeObject($settingsDayOff['startDate']), new \DateInterval('P1D'), DateTimeService::getCustomDateTimeObject($settingsDayOff['endDate'])->modify('+1 day') ); /** @var \DateTime $dayOffDate */ foreach ($dayOffPeriod as $dayOffDate) { if ($settingsDayOff['repeat']) { $dayOffDateFormatted = $dayOffDate->format('m-d'); $daysOff[$dayOffDateFormatted] = $dayOffDateFormatted; } else { $dayOffDateFormatted = $dayOffDate->format('Y-m-d'); $daysOff[$dayOffDateFormatted] = $dayOffDateFormatted; } } } return $daysOff; } /** * @param array $daysOffNew * * @return array * @throws \Exception * @throws \Interop\Container\Exception\ContainerException + */ public function getDaysOff($daysOffNew = null) { /** @var \AmeliaBooking\Domain\Services\Settings\SettingsService $settingsDS */ $settingsDS = $this->container->get('domain.settings.service'); $daysOff = $daysOffNew ?: $settingsDS->getCategorySettings('daysOff'); $utcDaysOff = []; foreach ($daysOff as &$dayOff) { $dayOff['startDate'] = $dayOff['startDate'] . ' 00:00:00'; $dayOff['endDate'] = $dayOff['endDate'] . ' 23:59:59'; if ($settingsDS->getSetting('general', 'showClientTimeZone')) { $utcDaysOff[] = [ 'startDate' => DateTimeService::getCustomDateTimeObjectInUtc($dayOff['startDate'])->format('Y-m-d H:i:s'), 'endDate' => DateTimeService::getCustomDateTimeObjectInUtc($dayOff['endDate'])->format('Y-m-d H:i:s'), 'repeat' => $dayOff['repeat'], 'name' => $dayOff['name'] ]; } } return !empty($utcDaysOff) ? $utcDaysOff : $daysOff; } /** * @return array * @throws \Exception * @throws \Interop\Container\Exception\ContainerException + */ public function getBccEmails() { /** @var \AmeliaBooking\Domain\Services\Settings\SettingsService $settingsDS */ $settingsDS = $this->container->get('domain.settings.service'); $bccEmail = $settingsDS->getSetting('notifications', 'bccEmail'); return ($bccEmail !== '') ? explode(',', $bccEmail) : []; } /** * @return array * @throws \Exception * @throws \Interop\Container\Exception\ContainerException + */ public function getBccSms() { /** @var \AmeliaBooking\Domain\Services\Settings\SettingsService $settingsDS */ $settingsDS = $this->container->get('domain.settings.service'); $bccSms = $settingsDS->getSetting('notifications', 'bccSms'); return ($bccSms !== '') ? explode(',', $bccSms) : []; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings