Skip to content

Commit 23ae56d

Browse files
committed
initial code
0 parents  commit 23ae56d

26 files changed

+1143
-0
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.wordpress

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @omnisend/integrations
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release plugin
2+
3+
on: [workflow_dispatch]
4+
jobs:
5+
svn:
6+
name: Release new tag
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@main
10+
- name: WordPress Plugin Deploy
11+
uses: omnisend/[email protected]
12+
env:
13+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
14+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
15+
SLUG: omnisend-for-gravity-forms-add-on
16+
BUILD_DIR: omnisend-for-gravity-forms

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
woocommerce-omnisend/.vscode/*
2+
.vscode/*
3+
.idea/*
4+
.svn
5+
6+
# These are needed when repo is checked out at the location of working WordPress site
7+
.DS_Store
8+
akismet/
9+
hello.php
10+
index.php
11+
klaviyo
12+
mailchimp-for-woocommerce
13+
woocommerce
14+
wp-crontrol
15+
code-snippets
16+
17+
# Composer
18+
composer.phar
19+
/vendor/
20+
# Local wordpress setup
21+
.wordpress
22+
.env
23+
24+
*.zip

.phpcs.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0"?>
2+
<ruleset name="Custom Standard" namespace="Omnisend\CS\Standard">
3+
<rule ref="WordPress">
4+
<exclude-pattern>*.js</exclude-pattern>
5+
6+
<exclude name="Generic.Commenting.DocComment" />
7+
<exclude name="Squiz.Commenting.ClassComment" />
8+
<exclude name="Squiz.Commenting.FunctionComment" />
9+
<exclude name="Squiz.Commenting.VariableComment" />
10+
<exclude name="Squiz.Commenting.BlockComment" />
11+
<exclude name="Universal.Operators.StrictComparisons" />
12+
<exclude name="Universal.Files.SeparateFunctionsFromOO" />
13+
<exclude name="WordPress.PHP.YodaConditions" />
14+
<exclude name="WordPress.PHP.StrictInArray" />
15+
</rule>
16+
</ruleset>

.prettierrc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
tabWidth: 4
2+
printWidth: 140
3+
singleQuote: true
4+
trailingComma: none
5+
bracketSpacing: true

.wordpress-org/banner-1544x500.png

348 KB
Loading

.wordpress-org/banner-772x250.png

185 KB
Loading

.wordpress-org/icon-256x256.gif

201 KB
Loading

.wordpress-org/screenshot-1.gif

853 KB
Loading

0 commit comments

Comments
 (0)