ast_inherit = __( 'Inherit', 'astra' );
$this->ast_all_font_weight = array(
'100' => __( 'Thin 100', 'astra' ),
'100italic' => __( '100 Italic', 'astra' ),
'200' => __( 'Extra-Light 200', 'astra' ),
'200italic' => __( '200 Italic', 'astra' ),
'300' => __( 'Light 300', 'astra' ),
'300italic' => __( '300 Italic', 'astra' ),
'400' => __( 'Normal 400', 'astra' ),
'italic' => __( '400 Italic', 'astra' ),
'500' => __( 'Medium 500', 'astra' ),
'500italic' => __( '500 Italic', 'astra' ),
'600' => __( 'Semi-Bold 600', 'astra' ),
'600italic' => __( '600 Italic', 'astra' ),
'700' => __( 'Bold 700', 'astra' ),
'700italic' => __( '700 Italic', 'astra' ),
'800' => __( 'Extra-Bold 800', 'astra' ),
'800italic' => __( '800 Italic', 'astra' ),
'900' => __( 'Ultra-Bold 900', 'astra' ),
'900italic' => __( '900 Italic', 'astra' ),
);
parent::__construct( $manager, $id, $args );
}
/**
* Renders the content for a control based on the type
* of control specified when this class is initialized.
*
* @since 1.0.0
* @access protected
* @return void
*/
protected function render_content() {
switch ( $this->type ) {
case 'ast-font-variant':
$this->render_font_variant( $this->ast_inherit );
break;
}
}
/**
* Enqueue control related scripts/styles.
*
* @access public
*/
public function enqueue() {
$js_uri = ASTRA_THEME_URI . 'inc/customizer/custom-controls/typography/';
$css_uri = ASTRA_THEME_URI . 'inc/customizer/custom-controls/typography/';
$js_uri = ASTRA_THEME_URI . 'inc/customizer/custom-controls/typography/';
wp_enqueue_style( 'astra-select-woo-style', $css_uri . 'selectWoo.css', null, ASTRA_THEME_VERSION );
wp_enqueue_script( 'astra-select-woo-script', $js_uri . 'selectWoo.js', array( 'jquery' ), ASTRA_THEME_VERSION, true );
wp_enqueue_script( 'astra-typography', $js_uri . 'typography.js', array( 'jquery', 'customize-base' ), ASTRA_THEME_VERSION, true );
$astra_typo_localize = $this->ast_all_font_weight;
wp_localize_script( 'astra-typography', 'astraTypo', $astra_typo_localize );
}
/**
* Renders the title and description for a control.
*
* @since 1.0.0
* @access protected
* @return void
*/
protected function render_content_title() {
if ( ! empty( $this->label ) ) {
echo '' . esc_html( $this->label ) . '';
}
if ( ! empty( $this->description ) ) {
echo '' . esc_html( $this->description ) . '';
}
}
/**
* Renders the connect attribute for a connected control.
*
* @since 1.0.0
* @access protected
* @return void
*/
protected function render_connect_attribute() {
if ( $this->connect ) {
echo ' data-connected-control="' . esc_attr( $this->connect ) . '"';
echo ' data-inherit="' . esc_attr( $this->ast_inherit ) . '"';
}
if ( $this->variant ) {
echo ' data-connected-variant="' . esc_attr( $this->variant ) . '"';
echo ' data-inherit="' . esc_attr( $this->ast_inherit ) . '"';
}
echo ' data-value="' . esc_attr( $this->value() ) . '"';
echo ' data-name="' . esc_attr( $this->name ) . '"';
}
/**
* Renders a font variant control.
*
* @since 1.5.2
* @param string $default Inherit/Default.
* @access protected
* @return void
*/
protected function render_font_variant( $default ) {
echo '';
echo '';
echo '';
}
/**
* Refresh the parameters passed to the JavaScript via JSON.
*
* @see WP_Customize_Control::to_json()
*/
public function to_json() {
parent::to_json();
$this->json['label'] = esc_html( $this->label );
$this->json['description'] = $this->description;
$this->json['name'] = $this->name;
$this->json['value'] = $this->value();
$this->json['connect'] = $this->connect;
$this->json['variant'] = $this->variant;
$this->json['link'] = $this->get_link();
$this->json['ast_all_font_weight'] = $this->ast_all_font_weight;
}
/**
* An Underscore (JS) template for this control's content (but not its container).
*
* Class variables for this control class are available in the `data` JS object;
* export custom variables by overriding {@see WP_Customize_Control::to_json()}.
*
* @see WP_Customize_Control::print_template()
*
* @access protected
*/
protected function content_template() {
?>