391 Notification refactorings (#441)

* Refactor notifications to allow easier plugins

* Notification refactoring

* Formatting

* Move news to NewsService; cleanup of events

* More refactoring; added send email out for news item and the template

* Formatting

* Formatting
This commit is contained in:
Nabeel S
2019-11-20 10:16:01 -05:00
committed by GitHub
parent 02973a0f22
commit ea3ab21beb
66 changed files with 754 additions and 718 deletions

View File

@@ -4,6 +4,7 @@ namespace App\Services;
use App\Contracts\Service;
use App\Support\ClassLoader;
use function get_class;
use Nwidart\Modules\Facades\Module;
class AwardService extends Service
@@ -18,9 +19,9 @@ class AwardService extends Service
$awards = [];
$formatted_awards = [];
// Find the awards in the app/Awards directory
$classes = ClassLoader::getClassesInPath(app_path('/Awards'));
$awards = array_merge($awards, $classes);
// Find the awards in the modules/Awards directory
// $classes = ClassLoader::getClassesInPath(module_path('Awards'));
// $awards = array_merge($awards, $classes);
// Look throughout all the other modules, in the module/{MODULE}/Awards directory
foreach (Module::all() as $module) {
@@ -33,7 +34,7 @@ class AwardService extends Service
}
foreach ($awards as $award) {
$formatted_awards[\get_class($award)] = $award;
$formatted_awards[get_class($award)] = $award;
}
return $formatted_awards;