'_row_count', 'layout' => '_row_column_layout' ]; public $builder_settings_section = ''; public $responsive_builder = ''; /** * Loads the jQuery UI button script and custom scripts/styles * * @since 1.0.0 * @access public * @return void */ public function enqueue() { wp_enqueue_style( 'blog-postx-builder-css', get_template_directory_uri() . '/inc/customizer/custom-controls/builder/builder.css', [], BLOG_POSTX_VERSION, 'all' ); wp_enqueue_script( 'blog-postx-builder-js', get_template_directory_uri() . '/inc/customizer/custom-controls/builder/builder.js', ['jquery'], BLOG_POSTX_VERSION, [ 'strategy' => 'defer', 'in_footer' => true ] ); } /** * Add custom JSON parameters to use in the JS template. * * @since 1.0.0 * @access public * @return void */ public function to_json() { parent::to_json(); $this->json['widgets'] = $this->widgets; $this->json['placement'] = $this->placement; $this->json['related_section'] = $this->related_section; $this->json['builder_settings_section'] = $this->builder_settings_section; $this->json['responsive_builder'] = $this->responsive_builder; } } endif;