Files
acrib.es/wp-content/themes/kadence/inc/customizer/custom-controls/class-kadence-section-pro.php
Malin f3ff7b7186 feat: initial ACRIB WordPress deployment
- WordPress 6.9.4 (es_ES) with Kadence theme
- Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto
- Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold
- Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI)
- Plugins: Kadence Blocks, Polylang, Contact Form 7
- Custom CSS with full brand styling and responsive layout
- HTTPS enforced via wp-config.php proxy detection
2026-05-19 19:25:59 +02:00

67 lines
1.4 KiB
PHP

<?php
/**
* The pro customize section extends the WP_Customize_Control class.
*
* @package kadence
*/
if ( ! class_exists( 'WP_Customize_Section' ) ) {
return;
}
/**
* Class Kadence_Section_Pro
*
* @access public
*/
class Kadence_Section_Pro extends WP_Customize_Section {
/**
* Control type
*
* @var string
*/
public $type = 'kadence_section_pro';
/**
* Link for pro version.
*
* @since 1.0.10
* @access public
* @var string
*/
public $pro_link = '';
/**
* Gather the parameters passed to client JavaScript via JSON.
*
* @since 4.1.0
*
* @return array The array to be exported to the client as JSON.
*/
public function json() {
$json = parent::json();
$json['pro_link'] = esc_url_raw( $this->pro_link );
return $json;
}
/**
* An Underscore (JS) template for rendering this section.
*
* Class variables for this section class are available in the `data` JS object;
* export custom variables by overriding WP_Customize_Section::json().
*
* @since 4.3.0
*
* @see WP_Customize_Section::print_template()
*/
protected function render_template() {
?>
<li id="accordion-section-{{ data.id }}" class="accordion-section control-section cannon-expand control-section-{{ data.type }}">
<h3 class="wp-ui-highlight">
<a href="{{ data.pro_link }}" class="wp-ui-text-highlight" target="_blank" rel="noopener">{{ data.title }}</a>
</h3>
</li>
<?php
}
}