-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Crio29 (#436) * remove bootstrap css from customizer (#408) * disable gutenberg widgets editor (#409) * fix excerpt length (#410) * fix ancestor menu backgrounds (#411) * fix mobile attribution display (#412) * Issue 280 (#413) * enabled transparent bg for widgets * fix background color & link color * fix overlay display (#414) * fix link hover preview (#415) * Issue 350 (#416) * Change fixed cover background * add pseudo-element to overlay styles * fix box-shadow input (#417) * add sprout-invoices icon to customizer (#418) * remove trashcan icon for attribution. (#419) * update readme and version numbers * phpcs fix * fix scss compilation error (#425) * disable gutenberg widgets editor (#426) * fix goup (#427) * fix incorrect escaping functions * update version numbers * remove commented out code * remove old edit button php code * add js and new php classes * add multi controls * add functions for adding menus * add dynamic edit button methods * remove debug code * phpcs fix * update version numbers * fix button alignments * update collision and styles * add widget support * fix collisions * change version numbers * remove unused variable * phpcs fixes * enable selective refresh for widgets * reorganize controls.config.php * reorganize controls.config.php * re-organize controls.config.php * phpcs fixes * add additional buttons * fix collision detection * add external link modals * update version numbers * resolves #307 * Resolves $449 * Updated Support Links (#451) * Updated Support Links eliminating redirects * eliminate redirects * bgtfw #450 * fix z-indexing issues * set rc1 version numbers * update readme * RC Fixes * fix woocommerce and cph buttons * update version number * update php versions in travis * update php versions in travis * update php-codesniffer version * update path to phpcs * remove php8 from tavis.yml * adjust z-indexing * fix missing buttons * add comments and update version number * button exclusion fix * fix empty <a> * remove debug code * update changes * update version numbers * update readme and version numbers for stable Co-authored-by: Nicole Paschen Caylor <nicolec@boldgrid.com>
- Loading branch information
1 parent
efcb466
commit 780bff4
Showing
52 changed files
with
6,771 additions
and
7,448 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
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
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,56 @@ | ||
#!/bin/bash | ||
|
||
run_phpcs() { | ||
if php node_modules/PHP_CodeSniffer/bin/phpcs --config-set installed_paths node_modules/WordPress-Coding-Standards/ ; then | ||
if npm run phpcs-installStandards && node_modules/PHP_CodeSniffer/bin/phpcs -p -s --report-emacs --report-summary --report-width=220 --standard=WordPress-Docs --standard=WordPress-Extra --ignore=*/node_modules/*,*/vendor/* --extensions=php src/includes/configs/customizer/controls/; then | ||
echo "No PHPCS Errors Found" | ||
exit 0 | ||
else | ||
while true; do | ||
read -p "Do you wish to run PHPCBF to automatically fix errors?" yn | ||
case $yn in | ||
[Yy]* ) run_phpcbf; break;; | ||
[Nn]* ) run_build_prompt; break;; | ||
* ) echo "Please answer yes or no.";; | ||
esac | ||
done | ||
fi | ||
else | ||
echo "PHPCS Installation failed" | ||
exit 1 | ||
fi | ||
} | ||
|
||
run_phpcbf() { | ||
npm run phpcs-installStandards && node_modules/PHP_CodeSniffer/bin/phpcbf -p -s --report-emacs --report-summary --report-width=220 --standard=WordPress-Docs --standard=WordPress-Extra --ignore=*/node_modules/*,*/vendor/* --extensions=php src/includes/configs/customizer/controls/ | ||
echo "Beautification done. Re-running PHPCS"; | ||
re_run_phpcs | ||
} | ||
|
||
re_run_phpcs() { | ||
if php node_modules/PHP_CodeSniffer/bin/phpcs --config-set installed_paths node_modules/WordPress-Coding-Standards/ ; then | ||
if npm run phpcs-installStandards && node_modules/PHP_CodeSniffer/bin/phpcs -p -s --report-emacs --report-summary --report-width=220 --standard=WordPress-Docs --standard=WordPress-Extra --ignore=*/node_modules/*,*/vendor/* --extensions=php src/includes/configs/customizer/controls/; then | ||
echo "All Issues corrected by PHPCBF" | ||
exit 0 | ||
else | ||
echo "There are still issues that cannot be corrected automatically" | ||
run_build_prompt | ||
fi | ||
else | ||
echo "PHPCS Installation failed" | ||
run_build_prompt | ||
fi | ||
} | ||
|
||
run_build_prompt() { | ||
while true; do | ||
read -p "Do you wish to continue build, without completing php-codesniffer linting?" yn | ||
case $yn in | ||
[Yy]* ) exit 0;; | ||
[Nn]* ) exit 1;; | ||
* ) echo "Please answer yes or no.";; | ||
esac | ||
done | ||
} | ||
|
||
run_phpcs |
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
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
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
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
68 changes: 0 additions & 68 deletions
68
src/assets/js/customizer/design/blog/blog-page/panel-expand.js
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
src/assets/js/customizer/design/blog/posts/panel-expand.js
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.