Make WordPress Core


Ignore:
Timestamp:
02/09/2020 04:52:28 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use Yoda conditions where appropriate.

See #49222.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-admin-bar.php

    r47122 r47219  
    319319
    320320        foreach ( $this->_get_nodes() as $node ) {
    321             if ( 'root' == $node->id ) {
     321            if ( 'root' === $node->id ) {
    322322                continue;
    323323            }
     
    330330
    331331            // Generate the group class (we distinguish between top level and other level groups).
    332             $group_class = ( $node->parent == 'root' ) ? 'ab-top-menu' : 'ab-submenu';
    333 
    334             if ( $node->type == 'group' ) {
     332            $group_class = ( 'root' === $node->parent ) ? 'ab-top-menu' : 'ab-submenu';
     333
     334            if ( 'group' === $node->type ) {
    335335                if ( empty( $node->meta['class'] ) ) {
    336336                    $node->meta['class'] = $group_class;
     
    341341
    342342            // Items in items aren't allowed. Wrap nested items in 'default' groups.
    343             if ( $parent->type == 'item' && $node->type == 'item' ) {
     343            if ( 'item' === $parent->type && 'item' === $node->type ) {
    344344                $default_id = $parent->id . '-default';
    345345                $default    = $this->_get_node( $default_id );
     
    370370                // Groups in groups aren't allowed. Add a special 'container' node.
    371371                // The container will invisibly wrap both groups.
    372             } elseif ( $parent->type == 'group' && $node->type == 'group' ) {
     372            } elseif ( 'group' === $parent->type && 'group' === $node->type ) {
    373373                $container_id = $parent->id . '-container';
    374374                $container    = $this->_get_node( $container_id );
     
    399399
    400400                        $index = array_search( $parent, $grandparent->children, true );
    401                         if ( $index === false ) {
     401                        if ( false === $index ) {
    402402                            $grandparent->children[] = $container;
    403403                        } else {
     
    470470     */
    471471    final protected function _render_container( $node ) {
    472         if ( $node->type != 'container' || empty( $node->children ) ) {
     472        if ( 'container' !== $node->type || empty( $node->children ) ) {
    473473            return;
    474474        }
     
    485485     */
    486486    final protected function _render_group( $node ) {
    487         if ( $node->type == 'container' ) {
     487        if ( 'container' === $node->type ) {
    488488            $this->_render_container( $node );
    489489            return;
    490490        }
    491         if ( $node->type != 'group' || empty( $node->children ) ) {
     491        if ( 'group' !== $node->type || empty( $node->children ) ) {
    492492            return;
    493493        }
     
    510510     */
    511511    final protected function _render_item( $node ) {
    512         if ( $node->type != 'item' ) {
     512        if ( 'item' !== $node->type ) {
    513513            return;
    514514        }
Note: See TracChangeset for help on using the changeset viewer.