mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 00:01:07 +00:00
132 lines
3.2 KiB
PHP
132 lines
3.2 KiB
PHP
<?php
|
|
/*
|
|
Widget Name: Call-To-Action
|
|
Description: A simple call-to-action widget. You can do what ever you want with a call-to-action widget.
|
|
Author: SiteOrigin
|
|
Author URI: https://siteorigin.com
|
|
*/
|
|
|
|
class SiteOrigin_Widget_Cta_Widget extends SiteOrigin_Widget {
|
|
|
|
function __construct() {
|
|
|
|
parent::__construct(
|
|
'sow-cta',
|
|
__('SiteOrigin Call-to-action', 'so-widgets-bundle'),
|
|
array(
|
|
'description' => __('A simple call-to-action widget with massive power.', '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_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(
|
|
'background_color' => array(
|
|
'type' => 'color',
|
|
'label' => __('Background color', 'so-widgets-bundle'),
|
|
),
|
|
'border_color' => array(
|
|
'type' => 'color',
|
|
'label' => __('Border color', 'so-widgets-bundle'),
|
|
),
|
|
'title_color' => array(
|
|
'type' => 'color',
|
|
'label' => __('Title color', 'so-widgets-bundle'),
|
|
),
|
|
'subtitle_color' => array(
|
|
'type' => 'color',
|
|
'label' => __('Subtitle color', 'so-widgets-bundle'),
|
|
),
|
|
'button_align' => array(
|
|
'type' => 'select',
|
|
'label' => __( 'Button align', 'so-widgets-bundle' ),
|
|
'default' => 'right',
|
|
'options' => array(
|
|
'left' => __( 'Left', 'so-widgets-bundle'),
|
|
'right' => __( 'Right', 'so-widgets-bundle'),
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'button' => array(
|
|
'type' => 'widget',
|
|
'class' => 'SiteOrigin_Widget_Button_Widget',
|
|
'label' => __('Button', 'so-widgets-bundle'),
|
|
),
|
|
|
|
);
|
|
}
|
|
|
|
function get_less_variables($instance) {
|
|
if( empty( $instance ) ) return array();
|
|
|
|
return array(
|
|
'border_color' => $instance['design']['border_color'],
|
|
'background_color' => $instance['design']['background_color'],
|
|
'title_color' => $instance['design']['title_color'],
|
|
'subtitle_color' => $instance['design']['subtitle_color'],
|
|
'button_align' => $instance['design']['button_align'],
|
|
);
|
|
}
|
|
|
|
function modify_child_widget_form($child_widget_form, $child_widget) {
|
|
unset( $child_widget_form['design']['fields']['align'] );
|
|
return $child_widget_form;
|
|
}
|
|
|
|
}
|
|
|
|
siteorigin_widget_register('sow-cta', __FILE__, 'SiteOrigin_Widget_Cta_Widget');
|