Skip to content

Commit d438024

Browse files
westonruterswissspidy
andcommittedJun 3, 2024
Use verbose prefix instead of IP
Co-authored-by: Pascal Birchler <pascalb@google.com>
1 parent 302f88b commit d438024

7 files changed

+24
-24
lines changed
 

‎plugins/image-prioritizer/class-ip-background-image-styled-tag-visitor.php ‎plugins/image-prioritizer/class-image-prioritizer-background-image-styled-tag-visitor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @since n.e.x.t
1818
* @access private
1919
*/
20-
final class IP_Background_Image_Styled_Tag_Visitor extends IP_Tag_Visitor {
20+
final class Image_Prioritizer_Background_Image_Styled_Tag_Visitor extends Image_Prioritizer_Tag_Visitor {
2121

2222
/**
2323
* Visits a tag.

‎plugins/image-prioritizer/class-ip-img-tag-visitor.php ‎plugins/image-prioritizer/class-image-prioritizer-img-tag-visitor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @since n.e.x.t
1818
* @access private
1919
*/
20-
final class IP_Img_Tag_Visitor extends IP_Tag_Visitor {
20+
final class Image_Prioritizer_Img_Tag_Visitor extends Image_Prioritizer_Tag_Visitor {
2121

2222
/**
2323
* Visits a tag.

‎plugins/image-prioritizer/class-ip-tag-visitor.php ‎plugins/image-prioritizer/class-image-prioritizer-tag-visitor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @since n.e.x.t
1818
* @access private
1919
*/
20-
abstract class IP_Tag_Visitor {
20+
abstract class Image_Prioritizer_Tag_Visitor {
2121

2222
/**
2323
* URL Metrics Group Collection.

‎plugins/image-prioritizer/helper.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
* @since n.e.x.t
1919
*/
20-
function ip_render_generator_meta_tag(): void {
20+
function image_prioritizer_render_generator_meta_tag(): void {
2121
// Use the plugin slug as it is immutable.
2222
echo '<meta name="generator" content="image-prioritizer ' . esc_attr( IMAGE_PRIORITIZER_VERSION ) . '">' . "\n";
2323
}
@@ -31,11 +31,11 @@ function ip_render_generator_meta_tag(): void {
3131
* @param OD_URL_Metrics_Group_Collection $url_metrics_group_collection URL Metrics Group Collection.
3232
* @param OD_Preload_Link_Collection $preload_links_collection Preload Links Collection.
3333
*/
34-
function ip_register_tag_visitors( OD_Tag_Visitor_Registry $registry, OD_URL_Metrics_Group_Collection $url_metrics_group_collection, OD_Preload_Link_Collection $preload_links_collection ): void {
34+
function image_prioritizer_register_tag_visitors( OD_Tag_Visitor_Registry $registry, OD_URL_Metrics_Group_Collection $url_metrics_group_collection, OD_Preload_Link_Collection $preload_links_collection ): void {
3535
// Note: The class is invocable (it has an __invoke() method).
36-
$img_visitor = new IP_Img_Tag_Visitor( $url_metrics_group_collection, $preload_links_collection );
36+
$img_visitor = new Image_Prioritizer_Img_Tag_Visitor( $url_metrics_group_collection, $preload_links_collection );
3737
$registry->register( 'img-tags', $img_visitor );
3838

39-
$bg_image_visitor = new IP_Background_Image_Styled_Tag_Visitor( $url_metrics_group_collection, $preload_links_collection );
39+
$bg_image_visitor = new Image_Prioritizer_Background_Image_Styled_Tag_Visitor( $url_metrics_group_collection, $preload_links_collection );
4040
$registry->register( 'bg-image-tags', $bg_image_visitor );
4141
}

‎plugins/image-prioritizer/hooks.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
exit; // Exit if accessed directly.
1111
}
1212

13-
add_action( 'wp_head', 'ip_render_generator_meta_tag' );
13+
add_action( 'wp_head', 'image_prioritizer_render_generator_meta_tag' );
1414

15-
add_action( 'od_register_tag_visitors', 'ip_register_tag_visitors', 10, 3 );
15+
add_action( 'od_register_tag_visitors', 'image_prioritizer_register_tag_visitors', 10, 3 );

‎plugins/image-prioritizer/load.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ static function ( string $version ): void {
7676

7777
define( 'IMAGE_PRIORITIZER_VERSION', $version );
7878

79-
require_once __DIR__ . '/class-ip-tag-visitor.php';
80-
require_once __DIR__ . '/class-ip-img-tag-visitor.php';
81-
require_once __DIR__ . '/class-ip-background-image-styled-tag-visitor.php';
79+
require_once __DIR__ . '/class-image-prioritizer-tag-visitor.php';
80+
require_once __DIR__ . '/class-image-prioritizer-img-tag-visitor.php';
81+
require_once __DIR__ . '/class-image-prioritizer-background-image-styled-tag-visitor.php';
8282
require_once __DIR__ . '/helper.php';
8383
require_once __DIR__ . '/hooks.php';
8484
}

‎plugins/image-prioritizer/tests/test-helper.php

+12-12
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
* @package image-prioritizer
66
*/
77

8-
class Test_IP_Helper extends WP_UnitTestCase {
8+
class Test_Image_Prioritizer_Helper extends WP_UnitTestCase {
99

1010
/**
1111
* Test printing the meta generator tag.
1212
*
13-
* @covers ::ip_render_generator_meta_tag
13+
* @covers ::image_prioritizer_render_generator_meta_tag
1414
*/
15-
public function test_ip_render_generator_meta_tag(): void {
16-
$function_name = 'ip_render_generator_meta_tag';
15+
public function test_image_prioritizer_render_generator_meta_tag(): void {
16+
$function_name = 'image_prioritizer_render_generator_meta_tag';
1717
$this->assertSame( 10, has_action( 'wp_head', $function_name ) );
1818
$tag = get_echo( $function_name );
1919
$this->assertStringStartsWith( '<meta', $tag );
@@ -26,7 +26,7 @@ public function test_ip_render_generator_meta_tag(): void {
2626
*
2727
* @return array<string, mixed> Data.
2828
*/
29-
public function data_provider_test_ip_filter_tag_walker_visitors(): array {
29+
public function data_provider_test_filter_tag_walker_visitors(): array {
3030
return array(
3131
'no-url-metrics' => array(
3232
'set_up' => static function (): void {},
@@ -827,17 +827,17 @@ static function () {
827827
}
828828

829829
/**
830-
* Test ip_register_tag_visitors().
830+
* Test image_prioritizer_register_tag_visitors().
831831
*
832-
* @covers ::ip_register_tag_visitors
833-
* @covers IP_Tag_Visitor
834-
* @covers IP_Img_Tag_Visitor
835-
* @covers IP_Background_Image_Styled_Tag_Visitor
832+
* @covers ::image_prioritizer_register_tag_visitors
833+
* @covers Image_Prioritizer_Tag_Visitor
834+
* @covers Image_Prioritizer_Img_Tag_Visitor
835+
* @covers Image_Prioritizer_Background_Image_Styled_Tag_Visitor
836836
*
837-
* @dataProvider data_provider_test_ip_filter_tag_walker_visitors
837+
* @dataProvider data_provider_test_filter_tag_walker_visitors
838838
* @throws Exception But it won't.
839839
*/
840-
public function test_ip_filter_tag_walker_visitors( Closure $set_up, string $buffer, string $expected ): void {
840+
public function test_image_prioritizer_register_tag_visitors( Closure $set_up, string $buffer, string $expected ): void {
841841
$set_up();
842842

843843
$remove_initial_tabs = static function ( string $input ): string {

0 commit comments

Comments
 (0)