| Conditions | 3 |
| Paths | 4 |
| Total Lines | 14 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function render_content() { |
||
| 35 | ?> |
||
| 36 | <label> |
||
| 37 | <?php |
||
| 38 | if ( ! empty( $this->label ) ) { |
||
| 39 | ?> |
||
| 40 | <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
||
| 41 | <?php |
||
| 42 | } |
||
| 43 | if ( ! empty( $this->description ) ) { |
||
| 44 | ?> |
||
| 45 | <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> |
||
| 46 | <?php } ?> |
||
| 47 | <input <?php $this->link(); ?> type="checkbox" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->input_attrs(); ?>> |
||
| 48 | </label> |
||
| 55 |