first commit

This commit is contained in:
Gerrit Elbrink
2025-09-15 16:58:12 +02:00
commit ab8f2e8eba
2 changed files with 30 additions and 0 deletions

22
.gitignore vendored Normal file
View File

@@ -0,0 +1,22 @@
# ignore everything in the root
/*
/*.*
# except "wp-content":
!wp-content/
# ignore everything in "wp-content":
wp-content/*
!wp-content/plugins/
wp-content/plugins/*
# except:
!wp-content/plugins/econgood_civi/
# ignore htaccess
.htaccess
!.gitignore
!README.md

View File

@@ -0,0 +1,8 @@
<?php
/*
* Plugin Name: Econgood CiviCRM Integration
* Description: Handle custom Econgood CIVI and Wordpress modifications
* Version: 1.0.0
* Author: Gerrit Elbrink
*/
?>