-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 23ae56d
Showing
26 changed files
with
1,143 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.wordpress |
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 @@ | ||
* @omnisend/integrations |
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 @@ | ||
name: Release plugin | ||
|
||
on: [workflow_dispatch] | ||
jobs: | ||
svn: | ||
name: Release new tag | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@main | ||
- name: WordPress Plugin Deploy | ||
uses: omnisend/action-wordpress-plugin-deploy@v1.0.3 | ||
env: | ||
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | ||
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | ||
SLUG: omnisend-for-gravity-forms-add-on | ||
BUILD_DIR: omnisend-for-gravity-forms |
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,24 @@ | ||
woocommerce-omnisend/.vscode/* | ||
.vscode/* | ||
.idea/* | ||
.svn | ||
|
||
# These are needed when repo is checked out at the location of working WordPress site | ||
.DS_Store | ||
akismet/ | ||
hello.php | ||
index.php | ||
klaviyo | ||
mailchimp-for-woocommerce | ||
woocommerce | ||
wp-crontrol | ||
code-snippets | ||
|
||
# Composer | ||
composer.phar | ||
/vendor/ | ||
# Local wordpress setup | ||
.wordpress | ||
.env | ||
|
||
*.zip |
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 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="Custom Standard" namespace="Omnisend\CS\Standard"> | ||
<rule ref="WordPress"> | ||
<exclude-pattern>*.js</exclude-pattern> | ||
|
||
<exclude name="Generic.Commenting.DocComment" /> | ||
<exclude name="Squiz.Commenting.ClassComment" /> | ||
<exclude name="Squiz.Commenting.FunctionComment" /> | ||
<exclude name="Squiz.Commenting.VariableComment" /> | ||
<exclude name="Squiz.Commenting.BlockComment" /> | ||
<exclude name="Universal.Operators.StrictComparisons" /> | ||
<exclude name="Universal.Files.SeparateFunctionsFromOO" /> | ||
<exclude name="WordPress.PHP.YodaConditions" /> | ||
<exclude name="WordPress.PHP.StrictInArray" /> | ||
</rule> | ||
</ruleset> |
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,5 @@ | ||
tabWidth: 4 | ||
printWidth: 140 | ||
singleQuote: true | ||
trailingComma: none | ||
bracketSpacing: true |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,7 @@ | ||
# Omnisend Add-on for Gravity Forms WordPress plugin | ||
|
||
Plugin (Add-On) for Gravity forms Wordpress plugin. | ||
|
||
More information can be found [here](https://docs.gravityforms.com/category/developers/php-api/add-on-framework/). | ||
|
||
Link to plugin in Wordpress app store: [link](https://wordpress.org/plugins/omnisend-for-gravity-forms-add-on/). |
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 @@ | ||
{ | ||
"name": "omnisend/gravity-forms-addon", | ||
"description": "Omnisend for Gravity Forms Add-on", | ||
"license": "proprietary", | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
}, | ||
"require-dev": { | ||
"php": ">=7.1.0", | ||
"wp-coding-standards/wpcs": "^3.0", | ||
"squizlabs/php_codesniffer": "^3.7.1", | ||
"dealerdirect/phpcodesniffer-composer-installer": "^1.0" | ||
} | ||
} |
Oops, something went wrong.