You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
<?php |
|
|
|
namespace common\modules\banners\services; |
|
|
|
use common\modules\banners\entities\BannerPlace; |
|
use common\modules\banners\forms\BannerPlaceForm; |
|
use common\modules\banners\repositories\BannerPlaceRepository; |
|
|
|
class BannerPlaceManageService |
|
{ |
|
private $_repository; |
|
|
|
public function __construct(BannerPlaceRepository $repository) |
|
{ |
|
$this->_repository = $repository; |
|
} |
|
|
|
public function create(BannerPlaceForm $form): BannerPlace |
|
{ |
|
$place = BannerPlace::create( |
|
$form->title, |
|
$form->width, |
|
$form->height, |
|
$form->active |
|
); |
|
$this->_repository->save($place); |
|
|
|
return $place; |
|
} |
|
|
|
public function edit($id, BannerPlaceForm $form): void |
|
{ |
|
$place = $this->_repository->get($id); |
|
$place->edit( |
|
$form->title, |
|
$form->width, |
|
$form->height, |
|
$form->active |
|
); |
|
$this->_repository->save($place); |
|
} |
|
|
|
public function remove($id): void |
|
{ |
|
$place = $this->_repository->get($id); |
|
$this->_repository->remove($place); |
|
} |
|
}
|
|
|