-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ensure no errors on CPTs without Yoast SEO metabox #103
base: develop
Are you sure you want to change the base?
Changes from 1 commit
20ef0bb
f2879db
f5c387b
7432e6f
500e08a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,10 @@ class AC_Yoast_SEO_ACF_Content_Analysis { | |
*/ | ||
public function init() { | ||
add_action( 'admin_init', array( $this, 'admin_init' ) ); | ||
|
||
if ( $this->is_dev_environment() ) { | ||
add_action( 'init', array( $this, 'add_cpt_for_tests' ) ); | ||
} | ||
} | ||
|
||
/** | ||
|
@@ -30,7 +34,7 @@ public function admin_init() { | |
|
||
$this->boot(); | ||
|
||
if ( defined( 'AC_YOAST_ACF_ANALYSIS_ENVIRONMENT' ) && 'development' === AC_YOAST_ACF_ANALYSIS_ENVIRONMENT ) { | ||
if ( $this->is_dev_environment() ) { | ||
$this->boot_dev(); | ||
} | ||
|
||
|
@@ -92,7 +96,7 @@ public function boot_dev() { | |
protected function register_config_filters() { | ||
add_filter( | ||
Yoast_ACF_Analysis_Facade::get_filter_name( 'scraper_config' ), | ||
array( $this, 'filter_scraper_config') | ||
array( $this, 'filter_scraper_config' ) | ||
); | ||
} | ||
|
||
|
@@ -223,4 +227,20 @@ protected function get_blacklist_type() { | |
protected function get_blacklist_name() { | ||
return new Yoast_ACF_Analysis_String_Store(); | ||
} | ||
|
||
/** | ||
* Adds a CPT for tests | ||
*/ | ||
public function add_cpt_for_tests() { | ||
require_once AC_SEO_ACF_ANALYSIS_PLUGIN_PATH . '/tests/js/system/data/cpt-non-public.php'; | ||
} | ||
|
||
|
||
/** | ||
* @return bool | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be nice to have some documentation here. |
||
*/ | ||
protected function is_dev_environment() { | ||
return ( defined( 'AC_YOAST_ACF_ANALYSIS_ENVIRONMENT' ) && 'development' === AC_YOAST_ACF_ANALYSIS_ENVIRONMENT ); | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,4 +100,42 @@ | |
), | ||
'menu_order' => 0, | ||
)); | ||
|
||
register_field_group(array ( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a space before There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As this is coming out of the ACF Export function like this I'd rather leave it like this as it makes it easy to just C&P stuff on changes and having clean diffs. What do you think about that? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That 's okay for me 👍 |
||
'id' => 'acf_non-public-cpt', | ||
'title' => 'Non Public CPT', | ||
'fields' => array ( | ||
array ( | ||
'key' => 'field_59e897a8755dc', | ||
'label' => 'Text', | ||
'name' => 'yoast_acf_analysis_text', | ||
'type' => 'text', | ||
'default_value' => '', | ||
'placeholder' => '', | ||
'prepend' => '', | ||
'append' => '', | ||
'formatting' => 'html', | ||
'maxlength' => '', | ||
), | ||
), | ||
'location' => array ( | ||
array ( | ||
array ( | ||
'param' => 'post_type', | ||
'operator' => '==', | ||
'value' => 'test_non_public_cpt', | ||
'order_no' => 0, | ||
'group_no' => 0, | ||
), | ||
), | ||
), | ||
'options' => array ( | ||
'position' => 'normal', | ||
'layout' => 'no_box', | ||
'hide_on_screen' => array ( | ||
), | ||
), | ||
'menu_order' => 0, | ||
)); | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -336,4 +336,50 @@ | |
'description' => '', | ||
)); | ||
|
||
acf_add_local_field_group(array ( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a space before There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See above. |
||
'key' => 'group_59e89863c6498', | ||
'title' => 'Non Public CPT', | ||
'fields' => array ( | ||
array ( | ||
'key' => 'field_59e897a8755dc', | ||
'label' => 'Text', | ||
'name' => 'yoast_acf_analysis_text', | ||
'type' => 'text', | ||
'value' => NULL, | ||
'instructions' => '', | ||
'required' => 0, | ||
'conditional_logic' => 0, | ||
'wrapper' => array ( | ||
'width' => '', | ||
'class' => '', | ||
'id' => '', | ||
), | ||
'default_value' => '', | ||
'placeholder' => '', | ||
'prepend' => '', | ||
'append' => '', | ||
'formatting' => 'html', | ||
'maxlength' => '', | ||
), | ||
), | ||
'location' => array ( | ||
array ( | ||
array ( | ||
'param' => 'post_type', | ||
'operator' => '==', | ||
'value' => 'test_non_public_cpt', | ||
), | ||
), | ||
), | ||
'menu_order' => 0, | ||
'position' => 'normal', | ||
'style' => 'seamless', | ||
'label_placement' => 'top', | ||
'instruction_placement' => 'label', | ||
'hide_on_screen' => array ( | ||
), | ||
'active' => 1, | ||
'description' => '', | ||
)); | ||
|
||
endif; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
$args = array( | ||
'public' => false, | ||
'show_ui' => true, | ||
'supports' => array( 'thumbnail' ), | ||
'label' => 'Non Public CPT', | ||
); | ||
|
||
register_post_type( 'test_non_public_cpt', $args ); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
var simpleField = require('../../helpers/simpleField'); | ||
var Logger = require('nightwatch/lib/util/logger.js'); | ||
|
||
module.exports = { | ||
tags: ['acf4', 'acf5', 'cpt'], | ||
|
||
before: function (browser) { | ||
var page = browser.page.WordPressHelper(); | ||
page.newPost('test_non_public_cpt'); | ||
}, | ||
|
||
beforeEach: function (browser) { | ||
}, | ||
|
||
'Custom Post Type (non public->no metabox)' : function (browser) { | ||
browser.getLog('browser', function(logEntriesArray) { | ||
|
||
var errors = logEntriesArray.filter(function(log){ | ||
return log.level === 'SEVERE'; | ||
}); | ||
|
||
browser.assert.ok( errors.length === 0, "No JS errors thrown." ) | ||
|
||
var warnings = logEntriesArray.filter(function(log){ | ||
return log.level === 'WARNING'; | ||
}); | ||
|
||
warnings.forEach(function(log){ | ||
console.log(Logger.colors.light_purple(' WARNING: ' + log.message)); | ||
}); | ||
|
||
}); | ||
}, | ||
|
||
after : function(browser) { | ||
browser.end(); | ||
} | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you make this line more clear. I know where CPT stands for, but somebody who's new to the codebase probably won't know.