Compare commits
1 Commits
ea8ee6764e
...
v0.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f2d1754b5 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -7,5 +7,3 @@ composer.phar
|
|||||||
/vendor/
|
/vendor/
|
||||||
/lib/*
|
/lib/*
|
||||||
/node_modules/
|
/node_modules/
|
||||||
composer.lock
|
|
||||||
package-lock.json
|
|
||||||
|
|||||||
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"java.project.sourcePaths": [
|
||||||
|
""
|
||||||
|
]
|
||||||
|
}
|
||||||
29
.vscode/sftp.json
vendored
Normal file
29
.vscode/sftp.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"name": "dev1.ogre.me",
|
||||||
|
"host": "dev.ogre.me",
|
||||||
|
"protocol": "sftp",
|
||||||
|
"port": 22,
|
||||||
|
"username": "dev1ogre",
|
||||||
|
"password": "KuT+T?ctDqJ?s",
|
||||||
|
"remotePath": "/home/dev1ogre/public_html/wp-content/plugins/ogre-schema/",
|
||||||
|
"uploadOnSave": true,
|
||||||
|
"useTempFile": false,
|
||||||
|
"openSsh": false,
|
||||||
|
"ignore": [
|
||||||
|
".vscode",
|
||||||
|
".git",
|
||||||
|
".DS_Store",
|
||||||
|
".gitignore",
|
||||||
|
"Makefile",
|
||||||
|
"ogre-schema.zip",
|
||||||
|
"ogre-schema",
|
||||||
|
"composer.json",
|
||||||
|
"composer.lock",
|
||||||
|
"package.json",
|
||||||
|
"package-lock.json",
|
||||||
|
"node_modules",
|
||||||
|
"phpcs_xml",
|
||||||
|
"postcss.config.js",
|
||||||
|
"gulpfile.js"
|
||||||
|
]
|
||||||
|
}
|
||||||
53
composer.lock
generated
Normal file
53
composer.lock
generated
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
{
|
||||||
|
"_readme": [
|
||||||
|
"This file locks the dependencies of your project to a known state",
|
||||||
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
|
"This file is @generated automatically"
|
||||||
|
],
|
||||||
|
"content-hash": "62a6a51cbea614094e050f847730af97",
|
||||||
|
"packages": [
|
||||||
|
{
|
||||||
|
"name": "magicoli/wp-package-updater-lib",
|
||||||
|
"version": "v0.1.10",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/magicoli/wp-package-updater-lib.git",
|
||||||
|
"reference": "e822132741c08d054fb97f249b1143c220f30e6f"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/magicoli/wp-package-updater-lib/zipball/e822132741c08d054fb97f249b1143c220f30e6f",
|
||||||
|
"reference": "e822132741c08d054fb97f249b1143c220f30e6f",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"froger-me/wp-plugin-update-server": "*"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"AGPL-3.0-or-later"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Magiiic"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Composer package for wp-package-updater library.",
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/magicoli/wp-package-updater-lib/issues",
|
||||||
|
"source": "https://github.com/magicoli/wp-package-updater-lib/tree/v0.1.10"
|
||||||
|
},
|
||||||
|
"time": "2023-06-09T12:42:28+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"packages-dev": [],
|
||||||
|
"aliases": [],
|
||||||
|
"minimum-stability": "stable",
|
||||||
|
"stability-flags": {},
|
||||||
|
"prefer-stable": false,
|
||||||
|
"prefer-lowest": false,
|
||||||
|
"platform": {},
|
||||||
|
"platform-dev": {},
|
||||||
|
"plugin-api-version": "2.6.0"
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
* Plugin Name: OgreSchema
|
* Plugin Name: OgreSchema
|
||||||
* Plugin URI: https://plugins.cleverogre.com/plugin/ogreschema/
|
* Plugin URI: https://plugins.cleverogre.com/plugin/ogreschema/
|
||||||
* Description: Output schema site-wide for your website.
|
* Description: Output schema site-wide for your website.
|
||||||
* Version: 0.1.0
|
* Version: 0.1.1
|
||||||
* Requires at Least: 6.0
|
* Requires at Least: 6.0
|
||||||
* Requires PHP: 8.0
|
* Requires PHP: 8.0
|
||||||
* Author: CleverOgre
|
* Author: CleverOgre
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ogre-schema",
|
"name": "ogre-schema",
|
||||||
"title": "OgreSchema",
|
"title": "OgreSchema",
|
||||||
"version": "0.1.0",
|
"version": "0.1.1",
|
||||||
"author": "CleverOgre",
|
"author": "CleverOgre",
|
||||||
"license": "GPL-3.0+",
|
"license": "GPL-3.0+",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
|
|||||||
56
phpcs.xml
Normal file
56
phpcs.xml
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<ruleset name="SomewhereWarm-cs">
|
||||||
|
<description>SomewhereWarm Coding Standards</description>
|
||||||
|
|
||||||
|
<!-- Exclude paths -->
|
||||||
|
<exclude-pattern>tests/</exclude-pattern>
|
||||||
|
<exclude-pattern>*/node_modules/*</exclude-pattern>
|
||||||
|
<exclude-pattern>*/assets/*</exclude-pattern>
|
||||||
|
<exclude-pattern>*/src/*</exclude-pattern>
|
||||||
|
<exclude-pattern>*/vendor/*</exclude-pattern>
|
||||||
|
|
||||||
|
<!-- Configs -->
|
||||||
|
<config name="minimum_supported_wp_version" value="4.7" />
|
||||||
|
<config name="testVersion" value="5.6-" />
|
||||||
|
|
||||||
|
<!-- Rules -->
|
||||||
|
<rule ref="WooCommerce-Core">
|
||||||
|
<exclude name="Core.Commenting.CommentTags.AuthorTag" />
|
||||||
|
<exclude name="WordPress.PHP.DontExtract" />
|
||||||
|
</rule>
|
||||||
|
|
||||||
|
<rule ref="WordPress-Extra">
|
||||||
|
<exclude name="Generic.Commenting.DocComment.SpacingAfter" />
|
||||||
|
<exclude name="Generic.Files.LineEndings.InvalidEOLChar" />
|
||||||
|
<exclude name="Generic.Functions.FunctionCallArgumentSpacing.SpaceBeforeComma" />
|
||||||
|
<exclude name="Generic.WhiteSpace" />
|
||||||
|
<exclude name="PEAR.Functions.FunctionCallSignature" />
|
||||||
|
<exclude name="Squiz.Commenting" />
|
||||||
|
<exclude name="Squiz.PHP.DisallowSizeFunctionsInLoops.Found" />
|
||||||
|
<exclude name="Squiz.WhiteSpace" />
|
||||||
|
<exclude name="WordPress.Arrays" />
|
||||||
|
<exclude name="WordPress.Files.FileName" />
|
||||||
|
<exclude name="WordPress.NamingConventions" />
|
||||||
|
<exclude name="WordPress.Security.ValidatedSanitizedInput.MissingUnslash" />
|
||||||
|
<exclude name="WordPress.WP.I18n.NonSingularStringLiteralText" />
|
||||||
|
<exclude name="WordPress.WhiteSpace" />
|
||||||
|
<exclude name="WordPress.Security.EscapeOutput" />
|
||||||
|
<exclude name="Squiz.PHP.EmbeddedPhp" />
|
||||||
|
</rule>
|
||||||
|
|
||||||
|
<rule ref="PHPCompatibility">
|
||||||
|
<exclude-pattern>tests/</exclude-pattern>
|
||||||
|
</rule>
|
||||||
|
|
||||||
|
<rule ref="WordPress.Security.EscapeOutput">
|
||||||
|
<properties>
|
||||||
|
<!-- e.g. body_class, the_content, the_excerpt -->
|
||||||
|
<property name="customAutoEscapedFunctions" type="array" value="0=>woocommerce_wp_select,1=>wcs_help_tip,2=>admin_url,3=>wc_price"/>
|
||||||
|
<!-- e.g. esc_attr, esc_html, esc_url-->
|
||||||
|
<property name="customEscapingFunctions" type="array" value="0=>wcs_json_encode,1=>htmlspecialchars,2=>wp_kses_allow_underscores"/>
|
||||||
|
<!-- e.g. _deprecated_argument, printf, _e-->
|
||||||
|
<property name="customPrintingFunctions" type="array" value=""/>
|
||||||
|
</properties>
|
||||||
|
</rule>
|
||||||
|
|
||||||
|
</ruleset>
|
||||||
@@ -4,7 +4,7 @@ Donate link: https://cleverogre.com/
|
|||||||
Tags: gravityforms, feed, jobs, resume, application
|
Tags: gravityforms, feed, jobs, resume, application
|
||||||
Requires at least: 6.0.0
|
Requires at least: 6.0.0
|
||||||
Tested up to: 6.4.3
|
Tested up to: 6.4.3
|
||||||
Stable tag: 0.1.0
|
Stable tag: 0.1.1
|
||||||
License: GPLv2 or later
|
License: GPLv2 or later
|
||||||
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
||||||
|
|
||||||
@@ -12,8 +12,6 @@ Output schema site-wide for your website.
|
|||||||
|
|
||||||
== Description ==
|
== Description ==
|
||||||
|
|
||||||
TODO
|
|
||||||
|
|
||||||
Prerequisites:
|
Prerequisites:
|
||||||
* [Advanced Custom Fields](https://www.advancedcustomfields.com/)
|
* [Advanced Custom Fields](https://www.advancedcustomfields.com/)
|
||||||
|
|
||||||
@@ -30,5 +28,8 @@ If you do know what plugin you have downloaded, please contact [CleverOgre](team
|
|||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
|
= 0.1.1 - 2025-05-21 =
|
||||||
|
* BUG: Fix `load_plugin_textdomain` deprecation.
|
||||||
|
|
||||||
= 0.1.0 - 2024-06-06 =
|
= 0.1.0 - 2024-06-06 =
|
||||||
* Initial build of OgreSchema plugin. Ported from OgreCore.
|
* Initial build of OgreSchema plugin. Ported from OgreCore.
|
||||||
|
|||||||
Reference in New Issue
Block a user