Make WordPress Core

Changeset 55734


Ignore:
Timestamp:
05/09/2023 11:17:14 AM (19 months ago)
Author:
SergeyBiryukov
Message:

Docs: Improve HTML API file and class headers per the documentation standards.

Follow-up to [55203], [55304], [55718], [55724], [55727].

See #57840.

Location:
trunk/src/wp-includes
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/html-api/class-wp-html-attribute-token.php

    r55203 r55734  
    11<?php
    22/**
    3  * HTML Tag Processor: Attribute token structure class.
     3 * HTML API: WP_HTML_Attribute_Token class
    44 *
    55 * @package WordPress
     
    99
    1010/**
    11  * Data structure for the attribute token that allows to drastically improve performance.
     11 * Core class used by the HTML tag processor as a data structure for the attribute token,
     12 * allowing to drastically improve performance.
    1213 *
    1314 * This class is for internal usage of the WP_HTML_Tag_Processor class.
  • trunk/src/wp-includes/html-api/class-wp-html-span.php

    r55203 r55734  
    11<?php
    22/**
    3  * HTML Span: Represents a textual span inside an HTML document.
     3 * HTML API: WP_HTML_Span class
    44 *
    55 * @package WordPress
     
    99
    1010/**
    11  * Represents a textual span inside an HTML document.
     11 * Core class used by the HTML tag processor to represent a textual span
     12 * inside an HTML document.
    1213 *
    13  * This is a two-tuple in disguise, used to avoid the memory
    14  * overhead involved in using an array for the same purpose.
     14 * This is a two-tuple in disguise, used to avoid the memory overhead
     15 * involved in using an array for the same purpose.
    1516 *
    1617 * This class is for internal usage of the WP_HTML_Tag_Processor class.
  • trunk/src/wp-includes/html-api/class-wp-html-tag-processor.php

    r55727 r55734  
    11<?php
    22/**
     3 * HTML API: WP_HTML_Tag_Processor class
     4 *
    35 * Scans through an HTML document to find specific tags, then
    46 * transforms those tags by adding, removing, or updating the
     
    2830
    2931/**
    30  * Modifies attributes in an HTML document for tags matching a query.
     32 * Core class used to modify attributes in an HTML document for tags matching a query.
    3133 *
    3234 * ## Usage
  • trunk/src/wp-includes/html-api/class-wp-html-text-replacement.php

    r55203 r55734  
    11<?php
    22/**
    3  * HTML Tag Processor: Text replacement class.
     3 * HTML API: WP_HTML_Text_Replacement class
    44 *
    55 * @package WordPress
     
    99
    1010/**
    11  * Data structure used to replace existing content from start to end that allows to drastically improve performance.
     11 * Core class used by the HTML tag processor as a data structure for replacing
     12 * existing content from start to end, allowing to drastically improve performance.
    1213 *
    1314 * This class is for internal usage of the WP_HTML_Tag_Processor class.
  • trunk/src/wp-includes/style-engine/class-wp-style-engine-css-declarations.php

    r55733 r55734  
    22/**
    33 * Style Engine: WP_Style_Engine_CSS_Declarations class
    4  * 
     4 *
    55 * @package WordPress
    66 * @subpackage StyleEngine
Note: See TracChangeset for help on using the changeset viewer.