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