header-icon.php
5 years ago
header.php
5 years ago
section.php
5 years ago
setting-date.php
5 years ago
setting-label-icons.php
5 years ago
setting-label.php
5 years ago
setting-message.php
5 years ago
setting-pro.php
5 years ago
setting-width.php
5 years ago
header-icon.php
32 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | $classes = [ |
| 8 | 'ac-column-heading-setting', |
| 9 | 'ac-column-indicator--' . $this->setting, |
| 10 | 'ac-column-indicator', |
| 11 | ]; |
| 12 | |
| 13 | if ( $this->dashicon ) { |
| 14 | $classes[] = 'dashicons'; |
| 15 | $classes[] = $this->dashicon; |
| 16 | } |
| 17 | |
| 18 | if ( $this->class ) { |
| 19 | $classes[] = $this->class; |
| 20 | } |
| 21 | |
| 22 | if ( 'on' === $this->state ) { |
| 23 | $classes[] = 'on'; |
| 24 | } |
| 25 | |
| 26 | ?> |
| 27 | <span class="<?php echo esc_attr( implode( ' ', $classes ) ); ?>" |
| 28 | title="<?php echo esc_attr( $this->title ); ?>" |
| 29 | data-setting="<?php echo esc_attr( $this->setting ); ?>" |
| 30 | data-indicator-toggle="" |
| 31 | > |
| 32 | </span> |