????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.217.114 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.se/wp-content/plugins/cornerstone/includes/elements/_alternate/ |
Upload File : |
<?php
class CS_Feature_Box extends Cornerstone_Element_Base {
public function data() {
return array(
'name' => 'feature-box',
'title' => __( 'Feature Box', 'cornerstone' ),
'section' => 'content',
'description' => __( 'Feature Box description.', 'cornerstone' ),
'supports' => array( 'id', 'class', 'style' )
);
}
public function controls() {
//
// General.
//
$this->addControl(
'title',
'text',
__( 'Title & Content', 'cornerstone' ),
__( 'Specify the title and content for your Feature Box.', 'cornerstone' ),
__( 'Feature Box Title', 'cornerstone' )
);
$this->addControl(
'content',
'text',
NULL,
NULL,
__( 'This is where the text for your Feature Box should go. It's best to keep it short and sweet.', 'cornerstone' )
);
$this->addControl(
'title_color',
'color',
__( 'Title & Content Colors', 'cornerstone' ),
__( 'Optionally specify colors for your title and content.', 'cornerstone' ),
''
);
$this->addControl(
'text_color',
'color',
NULL,
NULL,
''
);
//
// Graphic.
//
$this->addControl(
'graphic',
'select',
__( 'Graphic', 'cornerstone' ),
__( 'Choose between an icon and a custom image for your graphic.', 'cornerstone' ),
'icon',
array(
'choices' => array(
array( 'value' => 'icon', 'label' => __( 'Icon', 'cornerstone' ) ),
array( 'value' => 'image', 'label' => __( 'Image', 'cornerstone' ) )
)
)
);
//
// Graphic - icon and image.
//
$this->addControl(
'graphic_icon',
'icon-choose',
NULL,
NULL,
'ship',
array(
'condition' => array(
'graphic' => 'icon'
)
)
);
$this->addControl(
'graphic_image',
'image',
NULL,
NULL,
'',
array(
'condition' => array(
'graphic' => 'image'
)
)
);
//
// Graphic - size.
//
$this->addControl(
'graphic_size',
'text',
__( 'Graphic Size', 'cornerstone' ),
__( 'Specify the size of your graphic.', 'cornerstone' ),
'60px'
);
//
// Graphic - colors.
//
$this->addControl(
'graphic_color',
'color',
__( 'Graphic Color & Background Color', 'cornerstone' ),
__( 'Specify the color and background color of your graphic.', 'cornerstone' ),
'#ffffff'
);
$this->addControl(
'graphic_bg_color',
'color',
NULL,
NULL,
'#2ecc71'
);
//
// Graphic - shape.
//
$this->addControl(
'graphic_shape',
'select',
__( 'Graphic Shape', 'cornerstone' ),
__( 'Choose a shape for your Feature Box graphic.', 'cornerstone' ),
'square',
array(
'choices' => array(
array( 'value' => 'square', 'label' => __( 'Square', 'cornerstone' ) ),
array( 'value' => 'rounded', 'label' => __( 'Rounded', 'cornerstone' ) ),
array( 'value' => 'circle', 'label' => __( 'Circle', 'cornerstone' ) ),
array( 'value' => 'hexagon', 'label' => __( 'Hexagon (Icon Only)', 'cornerstone' ) ),
array( 'value' => 'badge', 'label' => __( 'Badge (Icon Only)', 'cornerstone' ) )
)
)
);
//
// Graphic - border.
//
$this->addSupport( 'border',
array(
'name' => 'graphic_border_style',
'controlTitle' => __( 'Graphic Border', 'cornerstone' ),
'options' => array(
'condition' => array(
'graphic_shape:not' => array( 'hexagon', 'badge' )
)
)
),
array(
'name' => 'graphic_border_color',
'options' => array(
'condition' => array(
'graphic_shape:not' => array( 'hexagon', 'badge' ),
'graphic_border_style:not' => 'none'
)
)
),
array(
'name' => 'graphic_border_width',
'defaultValue' => array( '2px', '2px', '2px', '2px', 'linked' ),
'options' => array(
'condition' => array(
'graphic_shape:not' => array( 'hexagon', 'badge' ),
'graphic_border_style:not' => 'none'
)
)
)
);
//
// Graphic - animation.
//
$this->addSupport( 'animation',
array(
'name' => 'graphic_animation',
'controlTitle' => __( 'Graphic Animation', 'cornerstone' )
),
array(
'name' => 'graphic_animation_offset',
'controlTitle' => __( 'Graphic Animation Offset (%)', 'cornerstone' ),
'options' => array(
'condition' => array(
'graphic_animation:not' => 'none'
)
)
),
array(
'name' => 'graphic_animation_delay',
'controlTitle' => __( 'Graphic Animation Delay (ms)', 'cornerstone' ),
'options' => array(
'condition' => array(
'graphic_animation:not' => 'none'
)
)
)
);
//
// Link.
//
$this->addControl(
'link_text',
'text',
__( 'Link Text', 'cornerstone' ),
__( 'Enter the text for your Feature Box link. Leave blank to remove.', 'cornerstone' ),
''
);
$this->addSupport( 'link' );
$this->addControl(
'link_color',
'color',
__( 'Link Color', 'cornerstone' ),
__( 'Specify a custom color for your Feature Box link.', 'cornerstone' ),
''
);
//
// Alignment.
//
$this->addControl(
'align_h',
'select',
__( 'Horizontal Alignment', 'cornerstone' ),
__( 'Select the horizontal alignment of the Feature Box.', 'cornerstone' ),
'center',
array(
'choices' => array(
array( 'value' => 'left', 'label' => __( 'Left', 'cornerstone' ) ),
array( 'value' => 'center', 'label' => __( 'Center', 'cornerstone' ) ),
array( 'value' => 'right', 'label' => __( 'Right', 'cornerstone' ) )
)
)
);
$this->addControl(
'align_v',
'select',
__( 'Vertical Alignment', 'cornerstone' ),
__( 'Select the vertical alignment of the Feature Box.', 'cornerstone' ),
'top',
array(
'choices' => array(
array( 'value' => 'top', 'label' => __( 'Top', 'cornerstone' ) ),
array( 'value' => 'middle', 'label' => __( 'Middle', 'cornerstone' ) )
),
'condition' => array(
'align_h:not' => 'center'
)
)
);
$this->addControl(
'side_graphic_spacing',
'text',
__( 'Graphic Spacing', 'cornerstone' ),
__( 'Specify an amount of spacing you want between your side graphic and the content.', 'cornerstone' ),
'20px',
array(
'condition' => array(
'align_h:not' => 'center'
)
)
);
$this->addControl(
'max_width',
'text',
__( 'Max Width', 'cornerstone' ),
__( 'Enter in a max width for your Feature Box if desired. This will keep your Feature Box from stretching out too far on smaller breakpoints.', 'cornerstone' ),
'none'
);
}
public function migrate( $element, $version ) {
if ( version_compare( $version, '1.0.10', '<' ) ) {
if ( isset( $element['text'] ) && ( !isset( $element['content'] ) || '' == $element['content'] ) ) {
$element['content'] = $element['text'];
unset($element['text']);
}
}
return $element;
}
public function render( $atts ) {
extract( $atts );
$params = array(
'title' => $title,
'title_color' => $title_color,
'text_color' => $text_color,
'graphic' => $graphic,
'graphic_size' => $graphic_size,
'graphic_shape' => $graphic_shape,
'graphic_color' => $graphic_color,
'graphic_bg_color' => $graphic_bg_color,
'align_h' => $align_h,
'align_v' => $align_v,
'side_graphic_spacing' => $side_graphic_spacing,
'max_width' => $max_width
);
if ( $link_text != '' ) {
$params['link_text'] = $link_text;
$params['href'] = $href;
$params['href_title'] = $href_title;
$params['href_target'] = ( $href_target == 'true' ) ? 'blank' : '';
$params['link_color'] = $link_color;
}
if ( $graphic_border_style != 'none' ) {
$params['graphic_border'] = $this->borderStyle( $graphic_border_width, $graphic_border_style, $graphic_border_color );
}
if ( $graphic == 'icon' ) {
$params['graphic_icon'] = $graphic_icon;
} else if ( $graphic == 'image' ) {
$params['graphic_image'] = $graphic_image;
}
if ( $graphic_animation != 'none' ) {
$params['graphic_animation'] = $graphic_animation;
$params['graphic_animation_offset'] = $graphic_animation_offset;
$params['graphic_animation_delay'] = $graphic_animation_delay;
}
$shortcode = cs_build_shortcode( 'x_feature_box', $params, $extra, $content, true );
return $shortcode;
}
}