In Anlehnung an das Feature 527:
Admin Notifications im Team-Modul bei Bewerbungen, wären ganz nett.
Ich hab das jetzt mal (mit meinem Unwissen und in Try&Error Manier) bei mir eingefügt..
-Falls das jemand auch vorab haben will, hab ich dass erstmal so bei mir eingefügt:
.../application/modules/teams/controllers/Index.php dann, ab Zeile ~18 /* notification */ use Modules\Admin\Mappers\Notifications as notificationsMapper; use Modules\Admin\Models\Notification as notificationModel; /* end notification */ ab Zeile ~140 /* admin notification */ $notificationsMapper = new NotificationsMapper(); $notificationModel = new NotificationModel(); $notificationsmessage = 'Neue Bewerbung von '.$this->getRequest()->getPost('name'); $notificationModel->setModule('teams'); $notificationModel->setMessage($notificationsmessage); $notificationModel->setURL($this->getLayout()->getUrl(['module' => 'admin/teams', 'controller' => 'applications', 'action' => 'index'])); $notificationModel->setType('JoinUs'); $notificationsMapper->addNotification($notificationModel); /* end admin notification */
Ihr Entwickler werdet mich sicherlich für die Ausführung Steinigen, aber für mich funktioniert es erstmal rudimentär.
Es ist auch noch kein Update, etc. mit drin... aber ich krieg wenigstens schonmal mit, wenn sich jemand auf ein Team bewirbt..
Hinweis, an die jenigen die die Änderung ebenfalls durchführen:
Nach einem update ist natürlich alles weg
wäre allerdings schön, wenn die "richtige" Umsetzung dazu, im nächten Update implementiert würde..
Vielen Dank, schonmal im Vorraus!!
MfG
Geini
verwendete ilch Version: 2.1.x
betroffene Homepage: geini1982.alfahosting.org/DuKs_2/
Zuletzt modifiziert von Geini82 am 01.11.2018 - 00:31:52