phpvms/app/Services/AwardService.php
Nabeel S aedb1f22b6
Don't allow cancels from certain states (#396)
* Don't allow cancels from certain states

* Unused imports

* Don't reset the state doubly

* Move SetUserActive into listener; code cleanup

* Unused imports

* Add missing files into htaccess

* Move Command contract to correct folder
2019-09-16 13:08:26 -04:00

42 lines
1.0 KiB
PHP

<?php
namespace App\Services;
use App\Contracts\Service;
use App\Support\ClassLoader;
use Nwidart\Modules\Facades\Module;
class AwardService extends Service
{
/**
* Find any of the award classes
*
* @return \App\Contracts\Award[]
*/
public function findAllAwardClasses(): array
{
$awards = [];
$formatted_awards = [];
// Find the awards in the app/Awards directory
$classes = ClassLoader::getClassesInPath(app_path('/Awards'));
$awards = array_merge($awards, $classes);
// Look throughout all the other modules, in the module/{MODULE}/Awards directory
foreach (Module::all() as $module) {
$path = $module->getExtraPath('Awards');
$classes = ClassLoader::getClassesInPath($path);
foreach ($classes as $class) {
$awards[] = $class;
}
}
foreach ($awards as $award) {
$formatted_awards[\get_class($award)] = $award;
}
return $formatted_awards;
}
}