Skip to content

Commit 7c7b323

Browse files
authored
Name Change
1 parent ad5b6ed commit 7c7b323

18 files changed

+250
-250
lines changed

.github/ISSUE_TEMPLATE/compatibility-test-failure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The automated compatibility test has failed for the following environment:
1919

2020
### Next Steps
2121

22-
This issue has been automatically created because the Simple WP Site Exporter plugin failed compatibility testing with this specific WordPress and PHP version combination. This could indicate:
22+
This issue has been automatically created because the EngineScript Site Exporter plugin failed compatibility testing with this specific WordPress and PHP version combination. This could indicate:
2323

2424
#### Potential Issues:
2525
1. **PHP Compatibility**: Code may use features not available in PHP {{ env.PHP_VERSION }}
@@ -41,7 +41,7 @@ This issue has been automatically created because the Simple WP Site Exporter pl
4141
docker run --rm -v $(pwd):/app wordpress:{{ env.WP_VERSION }}-php{{ env.PHP_VERSION }}-apache
4242

4343
# Run plugin check locally
44-
wp plugin check simple-wp-site-exporter --format=json --require=./wp-content/plugins/plugin-check/cli.php
44+
wp plugin check enginescript-site-exporter --format=json --require=./wp-content/plugins/plugin-check/cli.php
4545
```
4646

4747
Once fixed, please close this issue and reference it in the changelog.

.github/ISSUE_TEMPLATE/phpcs-failure.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ assignees: []
88

99
## PHPCS WordPress Coding Standards Failure
1010

11-
The automated PHP CodeSniffer (PHPCS) test has detected coding standard violations in the Simple WP Site Exporter plugin.
11+
The automated PHP CodeSniffer (PHPCS) test has detected coding standard violations in the EngineScript Site Exporter plugin.
1212

1313
### Details
1414

@@ -19,7 +19,7 @@ The automated PHP CodeSniffer (PHPCS) test has detected coding standard violatio
1919

2020
### Next Steps
2121

22-
This issue has been automatically created because the Simple WP Site Exporter plugin failed to meet WordPress coding standards. PHPCS checks for:
22+
This issue has been automatically created because the EngineScript Site Exporter plugin failed to meet WordPress coding standards. PHPCS checks for:
2323

2424
#### Checked Standards:
2525
1. **WordPress Core**: Core WordPress coding standards
@@ -50,13 +50,13 @@ This issue has been automatically created because the Simple WP Site Exporter pl
5050
composer install
5151

5252
# Run PHPCS checks
53-
./vendor/bin/phpcs --standard=WordPress simple-wp-site-exporter.php
53+
./vendor/bin/phpcs --standard=WordPress enginescript-site-exporter.php
5454

5555
# Auto-fix simple issues
56-
./vendor/bin/phpcbf --standard=WordPress simple-wp-site-exporter.php
56+
./vendor/bin/phpcbf --standard=WordPress enginescript-site-exporter.php
5757

5858
# Check specific files
59-
./vendor/bin/phpcs --standard=WordPress-Extra --report=full simple-wp-site-exporter.php
59+
./vendor/bin/phpcs --standard=WordPress-Extra --report=full enginescript-site-exporter.php
6060
```
6161

6262
Once fixed, please close this issue and reference it in the changelog.

.github/ISSUE_TEMPLATE/phpmd-failure.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ assignees: []
88

99
## PHPMD Code Quality Analysis Failure
1010

11-
The automated PHP Mess Detector (PHPMD) analysis has detected code quality issues in the Simple WP Site Exporter plugin.
11+
The automated PHP Mess Detector (PHPMD) analysis has detected code quality issues in the EngineScript Site Exporter plugin.
1212

1313
### Details
1414

@@ -19,7 +19,7 @@ The automated PHP Mess Detector (PHPMD) analysis has detected code quality issue
1919

2020
### Next Steps
2121

22-
This issue has been automatically created because the Simple WP Site Exporter plugin failed PHPMD code quality analysis. PHPMD detects:
22+
This issue has been automatically created because the EngineScript Site Exporter plugin failed PHPMD code quality analysis. PHPMD detects:
2323

2424
#### Analyzed Areas:
2525
1. **Clean Code**: Code complexity and maintainability issues
@@ -60,16 +60,16 @@ This project uses a WordPress-specific PHPMD configuration (`phpmd.xml`) that su
6060
composer install
6161

6262
# Run PHPMD with WordPress-specific configuration (recommended)
63-
./vendor/bin/phpmd simple-wp-site-exporter.php text phpmd.xml
63+
./vendor/bin/phpmd enginescript-site-exporter.php text phpmd.xml
6464

6565
# Run PHPMD with standard rules (may show WordPress-specific warnings)
66-
./vendor/bin/phpmd simple-wp-site-exporter.php text cleancode,codesize,design,naming,unusedcode
66+
./vendor/bin/phpmd enginescript-site-exporter.php text cleancode,codesize,design,naming,unusedcode
6767

6868
# Generate HTML report with WordPress config
69-
./vendor/bin/phpmd simple-wp-site-exporter.php html phpmd.xml --reportfile phpmd-report.html
69+
./vendor/bin/phpmd enginescript-site-exporter.php html phpmd.xml --reportfile phpmd-report.html
7070

7171
# Check specific rules with high priority
72-
./vendor/bin/phpmd simple-wp-site-exporter.php text codesize --minimumpriority 1
72+
./vendor/bin/phpmd enginescript-site-exporter.php text codesize --minimumpriority 1
7373
```
7474

7575
#### Example Fixes:

.github/ISSUE_TEMPLATE/plugin-check-failure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ assignees: []
88

99
## WordPress Plugin Check Failure
1010

11-
The WordPress Plugin Check action has identified issues with the Simple WP Site Exporter plugin.
11+
The WordPress Plugin Check action has identified issues with the EngineScript Site Exporter plugin.
1212

1313
### Details
1414

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Core plugin functionality
55
core:
66
- changed-files:
7-
- any-glob-to-any-file: simple-wp-site-exporter.php
7+
- any-glob-to-any-file: enginescript-site-exporter.php
88
- any-glob-to-any-file: includes/**/*
99
- any-glob-to-any-file: assets/js/**/*
1010

.github/workflows/continuous-integration.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This workflow runs continuous integration checks on the Simple WP Site Exporter plugin.
1+
# This workflow runs continuous integration checks on the EngineScript Site Exporter plugin.
22
# It performs code linting for both PHP and JavaScript files and builds the plugin package.
33
# The workflow is triggered on push to main branch and on pull requests to ensure code quality.
44
# It creates and stores a plugin zip file as an artifact that can be used for testing.
@@ -161,29 +161,29 @@ jobs:
161161
162162
- name: Create plugin package
163163
run: |
164-
mkdir -p build/simple-wp-site-exporter
164+
mkdir -p build/enginescript-site-exporter
165165
166166
# Copy main plugin file
167-
cp simple-wp-site-exporter.php build/simple-wp-site-exporter/
167+
cp enginescript-site-exporter.php build/enginescript-site-exporter/
168168
169169
# Copy directories if they exist
170-
[ -d assets ] && cp -r assets build/simple-wp-site-exporter/ || echo "No assets directory found"
171-
[ -d includes ] && cp -r includes build/simple-wp-site-exporter/ || echo "No includes directory found"
172-
[ -d languages ] && cp -r languages build/simple-wp-site-exporter/ || echo "No languages directory found"
173-
[ -d templates ] && cp -r templates build/simple-wp-site-exporter/ || echo "No templates directory found"
170+
[ -d assets ] && cp -r assets build/enginescript-site-exporter/ || echo "No assets directory found"
171+
[ -d includes ] && cp -r includes build/enginescript-site-exporter/ || echo "No includes directory found"
172+
[ -d languages ] && cp -r languages build/enginescript-site-exporter/ || echo "No languages directory found"
173+
[ -d templates ] && cp -r templates build/enginescript-site-exporter/ || echo "No templates directory found"
174174
175175
# Copy additional files if they exist
176-
[ -f readme.txt ] && cp readme.txt build/simple-wp-site-exporter/ || echo "No readme.txt found"
177-
[ -f README.md ] && cp README.md build/simple-wp-site-exporter/ || echo "No README.md found"
178-
[ -f CHANGELOG.md ] && cp CHANGELOG.md build/simple-wp-site-exporter/ || echo "No CHANGELOG.md found"
179-
[ -f LICENSE ] && cp LICENSE build/simple-wp-site-exporter/ || echo "No LICENSE file found"
176+
[ -f readme.txt ] && cp readme.txt build/enginescript-site-exporter/ || echo "No readme.txt found"
177+
[ -f README.md ] && cp README.md build/enginescript-site-exporter/ || echo "No README.md found"
178+
[ -f CHANGELOG.md ] && cp CHANGELOG.md build/enginescript-site-exporter/ || echo "No CHANGELOG.md found"
179+
[ -f LICENSE ] && cp LICENSE build/enginescript-site-exporter/ || echo "No LICENSE file found"
180180
181181
# Create zip file
182182
cd build
183-
zip -r simple-wp-site-exporter.zip simple-wp-site-exporter
183+
zip -r enginescript-site-exporter.zip enginescript-site-exporter
184184
185185
- name: Upload build artifact
186186
uses: actions/upload-artifact@v7
187187
with:
188-
name: simple-wp-site-exporter
189-
path: build/simple-wp-site-exporter.zip
188+
name: enginescript-site-exporter
189+
path: build/enginescript-site-exporter.zip

.github/workflows/new-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
issue-number: ${{ github.event.pull_request.number }}
2222
body: |
23-
Thanks for contributing to Simple WP Site Exporter! 🎉
23+
Thanks for contributing to EngineScript Site Exporter! 🎉
2424
2525
**Before we review:**
2626
- [ ] Have you tested your changes with WordPress 6.5+?

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Get latest version
2424
id: get_version
2525
run: |
26-
VERSION=$(grep -oP "Version: \K[0-9]+\.[0-9]+\.[0-9]+" simple-wp-site-exporter.php)
26+
VERSION=$(grep -oP "Version: \K[0-9]+\.[0-9]+\.[0-9]+" enginescript-site-exporter.php)
2727
echo "version=$VERSION" >> $GITHUB_OUTPUT
2828
echo "Found version: $VERSION"
2929
@@ -42,12 +42,12 @@ jobs:
4242
- name: Create zip file
4343
if: steps.check_release.outputs.exists == 'false'
4444
run: |
45-
mkdir -p simple-wp-site-exporter
46-
cp simple-wp-site-exporter.php simple-wp-site-exporter/
47-
cp README.md simple-wp-site-exporter/
48-
cp CHANGELOG.md simple-wp-site-exporter/
49-
cp LICENSE simple-wp-site-exporter/ || echo "No LICENSE file found"
50-
zip -r simple-wp-site-exporter-${{ steps.get_version.outputs.version }}.zip simple-wp-site-exporter
45+
mkdir -p enginescript-site-exporter
46+
cp enginescript-site-exporter.php enginescript-site-exporter/
47+
cp README.md enginescript-site-exporter/
48+
cp CHANGELOG.md enginescript-site-exporter/
49+
cp LICENSE enginescript-site-exporter/ || echo "No LICENSE file found"
50+
zip -r enginescript-site-exporter-${{ steps.get_version.outputs.version }}.zip enginescript-site-exporter
5151
5252
- name: Get changelog entry
5353
if: steps.check_release.outputs.exists == 'false'
@@ -73,7 +73,7 @@ jobs:
7373
3. Activate the plugin
7474
7575
[Full Documentation](https://github.com/${{ github.repository }})
76-
files: simple-wp-site-exporter-${{ steps.get_version.outputs.version }}.zip
76+
files: enginescript-site-exporter-${{ steps.get_version.outputs.version }}.zip
7777
draft: false
7878
prerelease: false
7979
generate_release_notes: false
@@ -88,7 +88,7 @@ jobs:
8888
TMP_FILE=$(mktemp)
8989
9090
# Update the version badge with the new version and logo
91-
sed -E 's/\[\!Version\]\(https:\/\/img\.shields\.io\/badge\/Version-[0-9]+\.[0-9]+\.[0-9]+-orange\.svg\?logo=github\)\]\(https:\/\/github\.com\/EngineScript\/simple-wp-site-exporter\/releases\/latest\/download\/simple-wp-site-exporter-[0-9]+\.[0-9]+\.[0-9]+\.zip\)/\[\!Version\]\(https:\/\/img\.shields\.io\/badge\/Version-'"$VERSION"'-orange\.svg\?logo=github\)\]\(https:\/\/github\.com\/EngineScript\/simple-wp-site-exporter\/releases\/latest\/download\/simple-wp-site-exporter-'"$VERSION"'\.zip\)/g' "$README_FILE" > "$TMP_FILE"
91+
sed -E 's/\[\!Version\]\(https:\/\/img\.shields\.io\/badge\/Version-[0-9]+\.[0-9]+\.[0-9]+-orange\.svg\?logo=github\)\]\(https:\/\/github\.com\/EngineScript\/enginescript-site-exporter\/releases\/latest\/download\/enginescript-site-exporter-[0-9]+\.[0-9]+\.[0-9]+\.zip\)/\[\!Version\]\(https:\/\/img\.shields\.io\/badge\/Version-'"$VERSION"'-orange\.svg\?logo=github\)\]\(https:\/\/github\.com\/EngineScript\/enginescript-site-exporter\/releases\/latest\/download\/enginescript-site-exporter-'"$VERSION"'\.zip\)/g' "$README_FILE" > "$TMP_FILE"
9292
9393
# Replace file if changes were made
9494
if ! cmp -s "$README_FILE" "$TMP_FILE"; then

.github/workflows/wp-compatibility-test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ jobs:
255255
<rule ref="WordPress.WP.I18n">
256256
<properties>
257257
<property name="text_domain" type="array">
258-
<element value="simple-wp-site-exporter"/>
258+
<element value="enginescript-site-exporter"/>
259259
</property>
260260
</properties>
261261
</rule>
@@ -364,7 +364,7 @@ jobs:
364364
# Use WordPress-specific PHPMD configuration (WordPress snake_case compatible)
365365
echo "Using WordPress-specific PHPMD configuration (WordPress snake_case compatible)..."
366366
# Run PHPMD but don't fail the build on naming convention issues
367-
phpmd simple-wp-site-exporter.php text phpmd.xml || echo "PHPMD completed with warnings (WordPress naming conventions may differ from PHPMD defaults)"
367+
phpmd enginescript-site-exporter.php text phpmd.xml || echo "PHPMD completed with warnings (WordPress naming conventions may differ from PHPMD defaults)"
368368
369369
- name: Create issue on PHPMD failure
370370
if: ${{ failure() }}
@@ -767,7 +767,7 @@ jobs:
767767
/**
768768
* PHPUnit bootstrap file for plugin tests.
769769
*
770-
* @package Simple_WP_Site_Exporter
770+
* @package EngineScript_Site_Exporter
771771
*/
772772
773773
require_once '/tmp/wordpress-tests-lib/includes/functions.php';
@@ -777,7 +777,7 @@ jobs:
777777
return;
778778
}, 0);
779779
780-
require dirname( dirname( __FILE__ ) ) . '/simple-wp-site-exporter.php';
780+
require dirname( dirname( __FILE__ ) ) . '/enginescript-site-exporter.php';
781781
}
782782
783783
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
@@ -790,12 +790,12 @@ jobs:
790790
cat > tests/test-plugin.php << 'EOF'
791791
<?php
792792
/**
793-
* Class Test_Simple_WP_Site_Exporter
793+
* Class Test_EngineScript_Site_Exporter
794794
*
795-
* @package Simple_WP_Site_Exporter
795+
* @package EngineScript_Site_Exporter
796796
*/
797797
798-
class Test_Simple_WP_Site_Exporter extends WP_UnitTestCase {
798+
class Test_EngineScript_Site_Exporter extends WP_UnitTestCase {
799799
public function test_plugin_loaded() {
800800
$this->assertTrue(function_exists('sse_admin_menu'), 'Plugin was not loaded correctly');
801801
}
@@ -825,7 +825,7 @@ jobs:
825825
convertWarningsToExceptions="true"
826826
>
827827
<testsuites>
828-
<testsuite name="Simple WP Site Exporter">
828+
<testsuite name="EngineScript Site Exporter">
829829
<directory prefix="test-" suffix=".php">./tests/</directory>
830830
</testsuite>
831831
</testsuites>

0 commit comments

Comments
 (0)