This repository has been archived by the owner on Jan 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
920716c
commit 842f586
Showing
8 changed files
with
187 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace App\Stimpack\Manipulators; | ||
use App\Stimpack\Manipulator; | ||
use App\Stimpack\Contexts\File; | ||
|
||
class MigrateDatabase extends Manipulator | ||
{ | ||
public function perform() { | ||
return [ | ||
"messages" => [ | ||
"MigrateDatabase" . " executed successfully" | ||
] | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import * as React from "react"; | ||
import {connect} from 'react-redux'; | ||
import BaseManipulator from "../BaseManipulator"; | ||
|
||
class MigrateDatabase extends BaseManipulator { | ||
|
||
static getDefaultManipulatorParameters() { | ||
return { | ||
name: "MigrateDatabase" | ||
} | ||
} | ||
|
||
renderSettings() { | ||
return ( | ||
<div> | ||
<h3>Beware! This is just a placeholder</h3> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
export default connect( | ||
BaseManipulator.mapStateToProps, | ||
BaseManipulator.matchDispatchToProps | ||
)(MigrateDatabase); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters