PluginProbe ʕ •ᴥ•ʔ
Customizer Export/Import / 0.8
Customizer Export/Import v0.8
trunk 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 0.9.1 0.9.2 0.9.7 0.9.7.1 0.9.7.2 0.9.7.3 0.9.8
customizer-export-import / classes / class-cei-control.php
customizer-export-import / classes Last commit date
class-cei-control.php 7 years ago class-cei-core.php 7 years ago class-cei-option.php 7 years ago
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 }