Making WordPress.org


Ignore:
Timestamp:
09/18/2024 02:32:35 AM (5 months ago)
Author:
dd32
Message:

Make: PHPUnit Test Reporter: Update to v0.2 from GitHub:
https://github.com/WordPress/phpunit-test-reporter/releases/tag/v0.2.0

Props desrosj.
Fixes #7777.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/src/class-content-model.php

    r9884 r14061  
    4343            )
    4444        );
     45
     46        register_taxonomy(
     47            'php-version',
     48            array( 'result' ),
     49            array(
     50                'labels'       => array(
     51                    'name'          => __( 'PHP Versions', 'ptr' ),
     52                    'singular_name' => __( 'PHP Version', 'ptr' ),
     53                ),
     54                'hierarchical'               => false,
     55                'public'                     => false,
     56                'show_ui'                    => true,
     57                'show_admin_column'          => true,
     58                'show_in_nav_menus'          => false,
     59                'show_tagcloud'              => false,
     60                'show_in_rest'               => true,
     61            )
     62        );
     63
     64        register_taxonomy(
     65            'db-version',
     66            array( 'result' ),
     67            array(
     68                'labels'       => array(
     69                    'name'          => __( 'Database Versions', 'ptr' ),
     70                    'singular_name' => __( 'Database Version', 'ptr' ),
     71                ),
     72                'hierarchical'               => false,
     73                'public'                     => false,
     74                'show_ui'                    => true,
     75                'show_admin_column'          => true,
     76                'show_in_nav_menus'          => false,
     77                'show_tagcloud'              => false,
     78                'show_in_rest'               => true,
     79            )
     80        );
     81
     82        register_taxonomy(
     83            'report-result',
     84            array( 'result' ),
     85            array(
     86                'labels'       => array(
     87                    'name'          => __( 'Result Status', 'ptr' ),
     88                    'singular_name' => __( 'Result Status', 'ptr' ),
     89                ),
     90                'hierarchical'               => false,
     91                'public'                     => false,
     92                'show_ui'                    => true,
     93                'show_admin_column'          => true,
     94                'show_in_nav_menus'          => false,
     95                'show_tagcloud'              => false,
     96                'show_in_rest'               => true,
     97            )
     98        );
    4599    }
    46100
Note: See TracChangeset for help on using the changeset viewer.