-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcallout.php
More file actions
72 lines (59 loc) · 1.52 KB
/
callout.php
File metadata and controls
72 lines (59 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
namespace Elementor;
class CalloutGeneric extends Widget_Base {
public function get_name() {
return 'callout-generic';
}
public function get_title() {
return 'Callout';
}
public function get_icon() {
return 'eicon-info-circle-o';
}
public function get_categories() {
return [ 'opp' ];
}
protected function _register_controls() {
$this->start_controls_section(
'section_title',
[
'label' => __( 'Content', 'elementor' ),
]
);
$this->add_control(
'type',
[
'label' => __( 'Callout Style', 'plugin-name' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'dashed',
'options' => [
'dashed' => __( 'Dashed Border / General Info', 'elementor' ),
'success' => __( 'Success / Green', 'elementor' ),
'warning' => __( 'Warning / Yellow', 'elementor' ),
'danger' => __( 'Danger / Red', 'elementor' ),
'grey' => __( 'Grey', 'elementor' ),
],
]
);
$this->add_control(
'content',
[
'label' => __( 'Content', 'elementor' ),
'type' => \Elementor\Controls_Manager::WYSIWYG,
]
);
$this->end_controls_section();
}
protected function render () {
$settings = $this->get_settings_for_display();
$label = $settings['type'];
$content = $settings['content'];
$type = $settings['type'];
$class = 'callout callout--' . $type;
echo '<article class="'. $class . '">
'.$content.'
</article>';
}
protected function _content_template() {
}
}