File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/src/Application/Services/Location/LocationApplicationService.php
Back
<?php namespace AmeliaBooking\Application\Services\Location; use AmeliaBooking\Domain\Entity\Location\Location; use AmeliaBooking\Infrastructure\Common\Container; use AmeliaBooking\Infrastructure\Common\Exceptions\QueryExecutionException; use AmeliaBooking\Infrastructure\Repository\Bookable\Service\PackageServiceLocationRepository; use AmeliaBooking\Infrastructure\Repository\Bookable\Service\ResourceEntitiesRepository; use AmeliaBooking\Infrastructure\Repository\Booking\Appointment\AppointmentRepository; use AmeliaBooking\Infrastructure\Repository\Booking\Event\EventRepository; use AmeliaBooking\Infrastructure\Repository\Location\LocationRepository; use AmeliaBooking\Infrastructure\Repository\Location\ProviderLocationRepository; use AmeliaBooking\Infrastructure\Repository\Schedule\PeriodLocationRepository; use AmeliaBooking\Infrastructure\Repository\Schedule\PeriodRepository; use AmeliaBooking\Infrastructure\Repository\Schedule\SpecialDayPeriodLocationRepository; use AmeliaBooking\Infrastructure\Repository\Schedule\SpecialDayPeriodRepository; use Slim\Exception\ContainerValueNotFoundException; /** * Class LocationApplicationService * * @package AmeliaBooking\Application\Services\Location */ class LocationApplicationService { private $container; /** * LocationApplicationService constructor. * * @param Container $container */ public function __construct(Container $container) { $this->container = $container; } /** * * @param Location $location * * @return boolean * * @throws ContainerValueNotFoundException * @throws QueryExecutionException */ public function delete($location) { /** @var AppointmentRepository $appointmentRepository */ $appointmentRepository = $this->container->get('domain.booking.appointment.repository'); /** @var EventRepository $eventRepository */ $eventRepository = $this->container->get('domain.booking.event.repository'); /** @var LocationRepository $locationRepository */ $locationRepository = $this->container->get('domain.locations.repository'); /** @var PeriodRepository $periodRepository */ $periodRepository = $this->container->get('domain.schedule.period.repository'); /** @var SpecialDayPeriodRepository $specialDayPeriodRepository */ $specialDayPeriodRepository = $this->container->get('domain.schedule.specialDay.period.repository'); /** @var PeriodLocationRepository $periodLocationRepository */ $periodLocationRepository = $this->container->get('domain.schedule.period.location.repository'); /** @var SpecialDayPeriodLocationRepository $specialDayPeriodLocationRepository */ $specialDayPeriodLocationRepository = $this->container->get('domain.schedule.specialDay.period.location.repository'); /** @var ProviderLocationRepository $providerLocationRepository */ $providerLocationRepository = $this->container->get('domain.bookable.service.providerLocation.repository'); /** @var PackageServiceLocationRepository $packageServiceLocationRepository */ $packageServiceLocationRepository = $this->container->get('domain.bookable.package.packageServiceLocation.repository'); /** @var ResourceEntitiesRepository $resourceEntitiesRepository */ $resourceEntitiesRepository = $this->container->get('domain.bookable.resourceEntities.repository'); return $eventRepository->updateByEntityId($location->getId()->getValue(), null, 'locationId') && $appointmentRepository->updateByEntityId($location->getId()->getValue(), null, 'locationId') && $periodRepository->updateByEntityId($location->getId()->getValue(), null, 'locationId') && $specialDayPeriodRepository->updateByEntityId($location->getId()->getValue(), null, 'locationId') && $periodLocationRepository->deleteByEntityId($location->getId()->getValue(), 'locationId') && $specialDayPeriodLocationRepository->deleteByEntityId($location->getId()->getValue(), 'locationId') && $packageServiceLocationRepository->deleteByEntityId($location->getId()->getValue(), 'locationId') && $providerLocationRepository->deleteByEntityId($location->getId()->getValue(), 'locationId') && $locationRepository->deleteViewStats($location->getId()->getValue()) && $resourceEntitiesRepository->deleteByEntityIdAndEntityType($location->getId()->getValue(), 'location') && $locationRepository->delete($location->getId()->getValue()); } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings