class-cei-control.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * A customizer control for rendering the export/import form. |
| 5 | * |
| 6 | * @since 0.1 |
| 7 | */ |
| 8 | final class CEI_Control extends WP_Customize_Control { |
| 9 | |
| 10 | /** |
| 11 | * Renders the control content. |
| 12 | * |
| 13 | * @since 0.1 |
| 14 | * @access protected |
| 15 | * @return void |
| 16 | */ |
| 17 | protected function render_content() |
| 18 | { |
| 19 | include CEI_PLUGIN_DIR . 'includes/control.php'; |
| 20 | } |
| 21 | } |