dashboard-menu-item.php
5 lines
| 1 | <?php echo ! empty( $is_mobile ) ? '<sc-menu-item href="' . esc_url( $href ?? '' ) . '" role="option">' : '<sc-tab aria-label="' . esc_html( $name ) . '" href="' . esc_url( $href ?? '' ) . '" ' . ( ! empty( $active ) ? 'active' : '' ) . '>'; ?> |
| 2 | <sc-icon aria-hidden="true" style="opacity: 0.65; font-size: 18px;" name="<?php echo esc_attr( $icon_name ); ?>" slot="prefix"></sc-icon> |
| 3 | <?php echo esc_html( $name ); ?> |
| 4 | <?php echo ! empty( $is_mobile ) ? '</sc-menu-item>' : '</sc-tab>'; ?> |
| 5 |