File: /home/dailygoldindex/public_html/wp-content/themes/jnews/class/Module/Block/Block_33_Option.php
<?php
/**
* @author : Jegtheme
*/
namespace JNews\Module\Block;
Class Block_33_Option extends BlockOptionAbstract {
protected $default_number_post = 6;
protected $show_excerpt = true;
protected $default_ajax_post = 3;
public function get_module_name() {
return esc_html__( 'JNews - Module 33', 'jnews' );
}
public function additional_style() {
parent::additional_style();
$this->options[] = array(
'type' => 'colorpicker',
'param_name' => 'readmore_background',
'group' => esc_html__( 'Design', 'jnews' ),
'heading' => esc_html__( 'Readmore Button Background', 'jnews' ),
'description' => esc_html__( 'Change the readmore button background color', 'jnews' ),
);
$this->options[] = array(
'type' => 'colorpicker',
'param_name' => 'block_background',
'group' => esc_html__( 'Design', 'jnews' ),
'heading' => esc_html__( 'Block Background', 'jnews' ),
'description' => esc_html__( 'This option will change your Block Background', 'jnews' ),
);
$this->options[] = array(
'type' => 'checkbox',
'param_name' => 'box_shadow',
'group' => esc_html__( 'Design', 'jnews' ),
'heading' => esc_html__( 'Box Shadow', 'jnews' ),
'std' => false
);
}
public function set_content_setting_option( $show_excerpt = false ) {
$this->options[] = array(
'type' => 'dropdown',
'param_name' => 'date_format',
'heading' => esc_html__( 'Content Date Format', 'jnews' ),
'description' => esc_html__( 'Choose which date format you want to use.', 'jnews' ),
'std' => 'default',
'group' => esc_html__( 'Content Setting', 'jnews' ),
'value' => array(
esc_html__( 'Relative Date/Time Format (ago)', 'jnews' ) => 'ago',
esc_html__( 'WordPress Default Format', 'jnews' ) => 'default',
esc_html__( 'Custom Format', 'jnews' ) => 'custom',
)
);
$this->options[] = array(
'type' => 'textfield',
'param_name' => 'date_format_custom',
'heading' => esc_html__( 'Custom Date Format', 'jnews' ),
'description' => wp_kses( sprintf( __( 'Please write custom date format for your module, for more detail about how to write date format, you can refer to this <a href="%s" target="_blank">link</a>.', 'jnews' ), 'https://codex.wordpress.org/Formatting_Date_and_Time' ), wp_kses_allowed_html() ),
'group' => esc_html__( 'Content Setting', 'jnews' ),
'std' => 'Y/m/d',
'dependency' => array( 'element' => 'date_format', 'value' => array( 'custom' ) )
);
if ( $show_excerpt ) {
$this->options[] = array(
'type' => 'slider',
'param_name' => 'excerpt_length',
'heading' => esc_html__( 'Excerpt Length', 'jnews' ),
'description' => esc_html__( 'Set word length of excerpt on post block.', 'jnews' ),
'group' => esc_html__( 'Content Setting', 'jnews' ),
'min' => 0,
'max' => 200,
'step' => 1,
'std' => 20,
);
$this->options[] = array(
'type' => 'textfield',
'param_name' => 'excerpt_ellipsis',
'heading' => esc_html__( 'Excerpt Ellipsis', 'jnews' ),
'description' => esc_html__( 'Define excerpt ellipsis', 'jnews' ),
'group' => esc_html__( 'Content Setting', 'jnews' ),
'std' => '...'
);
}
}
}