Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function render() { |
||
21 | $checked = checked( 1, $this->get_value(), false ); |
||
22 | ?> |
||
23 | <input name="<?php echo esc_attr( $this->get_id() ); ?>" id="<?php echo esc_attr( $this->get_id() ); ?>" type="checkbox" value="1" class="code" <?php echo esc_html( $checked ); ?> /> |
||
24 | <?php |
||
25 | $this->render_help(); |
||
26 | } |
||
27 | |||
29 |