| Total Complexity | 3 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 20 | class Kirki_Control_Checkbox extends Kirki_Control_Base { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * The control type. |
||
| 24 | * |
||
| 25 | * @access public |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | public $type = 'kirki-checkbox'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Render the control's content. |
||
| 32 | * Verbatim copy from WP_Customize_Control->render_content. |
||
| 33 | * |
||
| 34 | * @since 3.0.26 |
||
| 35 | */ |
||
| 36 | protected function render_content() { |
||
| 58 |