Skip to content
Snippets Groups Projects
Commit 9bb79a89 authored by Erick Hitter's avatar Erick Hitter
Browse files

PHPCS

parent 45dbce83
No related branches found
No related tags found
1 merge request!13PHPCS fixes
Pipeline #1693 passed with stages
in 2 minutes and 56 seconds
...@@ -66,7 +66,7 @@ class ETH_Escape_HeadSpace2 { ...@@ -66,7 +66,7 @@ class ETH_Escape_HeadSpace2 {
); );
/** /**
* robots.txt keys. * Headspace's robots.txt keys.
* *
* @var array * @var array
*/ */
...@@ -197,25 +197,25 @@ class ETH_Escape_HeadSpace2 { ...@@ -197,25 +197,25 @@ class ETH_Escape_HeadSpace2 {
$output = array(); $output = array();
foreach ( $hs_data as $hs_key => $hs_value ) { foreach ( $hs_data as $hs_key => $hs_value ) {
switch( $hs_key ) { switch ( $hs_key ) {
case '_headspace_description' : case '_headspace_description':
case '_headspace_metakey' : case '_headspace_metakey':
$output[] = '<meta name="' . esc_attr( $this->hs_keys_to_meta_names[ $hs_key ] ) . '" content="' . esc_attr( $hs_value ) . '" />'; $output[] = '<meta name="' . esc_attr( $this->hs_keys_to_meta_names[ $hs_key ] ) . '" content="' . esc_attr( $hs_value ) . '" />';
break; break;
case '_headspace_scripts' : case '_headspace_scripts':
foreach ( $hs_value as $_source ) { foreach ( $hs_value as $_source ) {
$output[] = '<script type="text/javascript" src="' . esc_url( $_source ) . '"></script>'; $output[] = '<script type="text/javascript" src="' . esc_url( $_source ) . '"></script>';
} }
break; break;
case '_headspace_stylesheets' : case '_headspace_stylesheets':
foreach ( $hs_value as $_source ) { foreach ( $hs_value as $_source ) {
$output[] = '<link rel="stylesheet" href="' . esc_url( $_source ) . '" type="text/css" />'; $output[] = '<link rel="stylesheet" href="' . esc_url( $_source ) . '" type="text/css" />';
} }
break; break;
default : default:
continue 2; continue 2;
break; break;
} }
...@@ -225,7 +225,7 @@ class ETH_Escape_HeadSpace2 { ...@@ -225,7 +225,7 @@ class ETH_Escape_HeadSpace2 {
$robots = array(); $robots = array();
foreach ( $this->hs_robots_keys as $hs_robot_key ) { foreach ( $this->hs_robots_keys as $hs_robot_key ) {
if ( isset( $hs_data[ $hs_robot_key] ) ) { if ( isset( $hs_data[ $hs_robot_key ] ) ) {
$robots[] = str_replace( '_headspace_', '', $hs_robot_key ); $robots[] = str_replace( '_headspace_', '', $hs_robot_key );
} }
} }
...@@ -241,12 +241,13 @@ class ETH_Escape_HeadSpace2 { ...@@ -241,12 +241,13 @@ class ETH_Escape_HeadSpace2 {
} }
// Raw output should follow all other output. // Raw output should follow all other output.
if ( ! empty( $hs_data[ '_headspace_raw' ] ) ) { if ( ! empty( $hs_data['_headspace_raw'] ) ) {
$output[] = $hs_data[ '_headspace_raw' ]; $output[] = $hs_data['_headspace_raw'];
} }
// Output whatever we've built // Output whatever we've built.
if ( ! empty( $output ) ) { if ( ! empty( $output ) ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo "\n<!-- Escape HeadSpace2 by Erick Hitter; https://ethitter.com/plugins/ -->\n" . implode( "\n", $output ) . "\n<!-- Escape HeadSpace2 -->\n"; echo "\n<!-- Escape HeadSpace2 by Erick Hitter; https://ethitter.com/plugins/ -->\n" . implode( "\n", $output ) . "\n<!-- Escape HeadSpace2 -->\n";
} }
} }
...@@ -258,6 +259,7 @@ class ETH_Escape_HeadSpace2 { ...@@ -258,6 +259,7 @@ class ETH_Escape_HeadSpace2 {
$output = get_post_meta( get_the_ID(), '_headspace_raw_footer', true ); $output = get_post_meta( get_the_ID(), '_headspace_raw_footer', true );
if ( ! empty( $output ) ) { if ( ! empty( $output ) ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo $output . "\n"; echo $output . "\n";
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment