Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

42 lines
1.0KB

  1. <?php
  2. namespace common\logic\User\UserGroup;
  3. use common\helpers\GlobalParam;
  4. use common\logic\AbstractService;
  5. use common\logic\RepositoryInterface;
  6. class UserGroupRepository extends AbstractService implements RepositoryInterface
  7. {
  8. public function getDefaultOptionsSearch()
  9. {
  10. return [
  11. 'with' => [],
  12. 'join_with' => [],
  13. 'orderby' => '',
  14. 'attribute_id_producer' => ''
  15. ];
  16. }
  17. public function findOneUserGroupById(int $id)
  18. {
  19. return UserGroup::searchOne(['id' => $id]);
  20. }
  21. public function findUserGroups()
  22. {
  23. return UserGroup::find()->where('id_producer = ' . GlobalParam::getCurrentProducerId())->all();
  24. }
  25. public function populateUserGroupDropdownList(): array
  26. {
  27. $userGroupsArrayDropdown = ['' => '--'];
  28. $userGroupsArray = $this->findUserGroups();
  29. foreach ($userGroupsArray as $userGroup) {
  30. $userGroupsArrayDropdown[$userGroup['id']] = $userGroup['name'];
  31. }
  32. return $userGroupsArrayDropdown;
  33. }
  34. }