| @@ -7,8 +7,11 @@ | ||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Implements table for bulk description editing. |
| 11 | + * | |
| 12 | + * @deprecated 28.1 | |
| 13 | + * @codeCoverageIgnore | |
| 11 | 14 | */ |
| 12 | 15 | class WPSEO_Bulk_Description_List_Table extends WPSEO_Bulk_List_Table { |
| 13 | 16 | |
| 14 | 17 | /** |
| @@ -38,8 +41,11 @@ | ||
| 38 | 41 | |
| 39 | 42 | /** |
| 40 | 43 | * The columns shown on the table. |
| 41 | 44 | * |
| 45 | + * @deprecated 28.1 | |
| 46 | + * @codeCoverageIgnore | |
| 47 | + * | |
| 42 | 48 | * @return array |
| 43 | 49 | */ |
| 44 | 50 | public function get_columns() { |
| 45 | 51 | $columns = [ |
| @@ -64,9 +70,9 @@ | ||
| 64 | 70 | case 'col_new_yoast_seo_metadesc': |
| 65 | 71 | return sprintf( |
| 66 | 72 | '<textarea id="%1$s" name="%1$s" class="wpseo-new-metadesc" data-id="%2$s" aria-labelledby="col_new_yoast_seo_metadesc"></textarea>', |
| 67 | 73 | esc_attr( 'wpseo-new-metadesc-' . $record->ID ), |
| 68 | - esc_attr( $record->ID ) | |
| 74 | + esc_attr( $record->ID ), | |
| 69 | 75 | ); |
| 70 | 76 | |
| 71 | 77 | case 'col_existing_yoast_seo_metadesc': |
| 72 | 78 | // @todo Inconsistent return/echo behavior R. |