Файловый менеджер - Редактировать - /home/easybachat/resumewing.com/app/Enums/EnumToArray.php
Ðазад
<?php /* * JobClass - Job Board Web Application * Copyright (c) BeDigit. All Rights Reserved * * Website: https://laraclassifier.com/jobclass * Author: Mayeul Akpovi (BeDigit - https://bedigit.com) * * LICENSE * ------- * This software is provided under a license agreement and may only be used or copied * in accordance with its terms, including the inclusion of the above copyright notice. * As this software is sold exclusively on CodeCanyon, * please review the full license details here: https://codecanyon.net/licenses/standard */ namespace App\Enums; use App\Helpers\Common\Arr; use Throwable; trait EnumToArray { /** * @param bool|string|null $orderBy * @param string $order * @return array */ public static function all(bool|string|null $orderBy = null, string $order = 'asc'): array { $entries = collect(self::cases()) ->mapWithKeys(fn ($item) => [$item->value => self::find($item->value)]) ->toArray(); $isSortEnabled = ( (is_bool($orderBy) && $orderBy) || is_null($orderBy) || is_string($orderBy) ); if ($isSortEnabled) { $orderBy = is_bool($orderBy) ? null : $orderBy; if (empty($orderBy)) { $orderBy = 'label'; } try { $entries = Arr::mbSortBy($entries, $orderBy, $order); } catch (Throwable $e) { } } return $entries; } /** * @param $value * @return array */ public static function find($value = null): array { if (empty($value)) return []; $item = self::tryFrom($value); if (empty($item)) return []; return [ 'id' => $item->value, 'name' => $item->name, 'label' => $item->label(), ]; } /** * @return array */ public static function names(): array { return array_column(self::cases(), 'name'); } /** * @return array */ public static function values(): array { return array_column(self::cases(), 'value'); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка