/var/www/html_us/wp-content/plugins/elementor/includes/shapes.php


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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<?php
namespace Elementor;

if ( ! 
defined'ABSPATH' ) ) {
    exit; 
// Exit if accessed directly.
}

/**
 * Elementor shapes.
 *
 * Elementor shapes handler class is responsible for setting up the supported
 * shape dividers.
 *
 * @since 1.3.0
 */
class Shapes {

    
/**
     * The exclude filter.
     */
    
const FILTER_EXCLUDE 'exclude';

    
/**
     * The include filter.
     */
    
const FILTER_INCLUDE 'include';

    
/**
     * Shapes.
     *
     * Holds the list of supported shapes.
     *
     * @since 1.3.0
     * @access private
     * @static
     *
     * @var array A list of supported shapes.
     */
    
private static $shapes;

    
/**
     * Get shapes.
     *
     * Retrieve a shape from the lists of supported shapes. If no shape specified
     * it will return all the supported shapes.
     *
     * @since 1.3.0
     * @access public
     * @static
     *
     * @param array $shape Optional. Specific shape. Default is `null`.
     *
     * @return array The specified shape or a list of all the supported shapes.
     */
    
public static function get_shapes$shape null ) {
        if ( 
null === self::$shapes ) {
            
self::init_shapes();
        }

        if ( 
$shape ) {
            return isset( 
self::$shapes$shape ] ) ? self::$shapes$shape ] : null;
        }

        return 
self::$shapes;
    }

    
/**
     * Filter shapes.
     *
     * Retrieve shapes filtered by a specific condition, from the list of
     * supported shapes.
     *
     * @since 1.3.0
     * @access public
     * @static
     *
     * @param string $by     Specific condition to filter by.
     * @param string $filter Optional. Comparison condition to filter by.
     *                       Default is `include`.
     *
     * @return array A list of filtered shapes.
     */
    
public static function filter_shapes$by$filter self::FILTER_INCLUDE ) {
        return 
array_filter(
            
self::get_shapes(), function( $shape ) use ( $by$filter ) {
                return 
self::FILTER_INCLUDE === $filter xor empty( $shape$by ] );
            }
        );
    }

    
/**
     * Get shape path.
     *
     * For a given shape, retrieve the file path.
     *
     * @since 1.3.0
     * @access public
     * @static
     *
     * @param string $shape       The shape.
     * @param bool   $is_negative Optional. Whether the file name is negative or
     *                            not. Default is `false`.
     *
     * @return string Shape file path.
     */
    
public static function get_shape_path$shape$is_negative false ) {
        if ( ! isset( 
self::$shapes$shape ] ) ) {
            return 
'';
        }

        if ( isset( 
self::$shapes$shape ]['path'] ) ) {
            
$path self::$shapes$shape ]['path'];
            return ( 
$is_negative ) ? str_replace'.svg''-negative.svg'$path ) : $path;
        }

        
$file_name $shape;

        if ( 
$is_negative ) {
            
$file_name .= '-negative';
        }

        return 
ELEMENTOR_PATH 'assets/shapes/' $file_name '.svg';
    }

    
/**
     * Init shapes.
     *
     * Set the supported shapes.
     *
     * @since 1.3.0
     * @access private
     * @static
     */
    
private static function init_shapes() {
        
$native_shapes = [
            
'mountains' => [
                
'title' => esc_html_x'Mountains''Shapes''elementor' ),
                
'has_flip' => true,
            ],
            
'drops' => [
                
'title' => esc_html_x'Drops''Shapes''elementor' ),
                
'has_negative' => true,
                
'has_flip' => true,
                
'height_only' => true,
            ],
            
'clouds' => [
                
'title' => esc_html_x'Clouds''Shapes''elementor' ),
                
'has_negative' => true,
                
'has_flip' => true,
                
'height_only' => true,
            ],
            
'zigzag' => [
                
'title' => esc_html_x'Zigzag''Shapes''elementor' ),
            ],
            
'pyramids' => [
                
'title' => esc_html_x'Pyramids''Shapes''elementor' ),
                
'has_negative' => true,
                
'has_flip' => true,
            ],
            
'triangle' => [
                
'title' => esc_html_x'Triangle''Shapes''elementor' ),
                
'has_negative' => true,
            ],
            
'triangle-asymmetrical' => [
                
'title' => esc_html_x'Triangle Asymmetrical''Shapes''elementor' ),
                
'has_negative' => true,
                
'has_flip' => true,
            ],
            
'tilt' => [
                
'title' => esc_html_x'Tilt''Shapes''elementor' ),
                
'has_flip' => true,
                
'height_only' => true,
            ],
            
'opacity-tilt' => [
                
'title' => esc_html_x'Tilt Opacity''Shapes''elementor' ),
                
'has_flip' => true,
            ],
            
'opacity-fan' => [
                
'title' => esc_html_x'Fan Opacity''Shapes''elementor' ),
            ],
            
'curve' => [
                
'title' => esc_html_x'Curve''Shapes''elementor' ),
                
'has_negative' => true,
            ],
            
'curve-asymmetrical' => [
                
'title' => esc_html_x'Curve Asymmetrical''Shapes''elementor' ),
                
'has_negative' => true,
                
'has_flip' => true,
            ],
            
'waves' => [
                
'title' => esc_html_x'Waves''Shapes''elementor' ),
                
'has_negative' => true,
                
'has_flip' => true,
            ],
            
'wave-brush' => [
                
'title' => esc_html_x'Waves Brush''Shapes''elementor' ),
                
'has_flip' => true,
            ],
            
'waves-pattern' => [
                
'title' => esc_html_x'Waves Pattern''Shapes''elementor' ),
                
'has_flip' => true,
            ],
            
'arrow' => [
                
'title' => esc_html_x'Arrow''Shapes''elementor' ),
                
'has_negative' => true,
            ],
            
'split' => [
                
'title' => esc_html_x'Split''Shapes''elementor' ),
                
'has_negative' => true,
            ],
            
'book' => [
                
'title' => esc_html_x'Book''Shapes''elementor' ),
                
'has_negative' => true,
            ],
        ];

        
self::$shapes array_merge$native_shapesself::get_additional_shapes() );
    }

    
/**
     * Get Additional Shapes
     *
     * Used to add custom shapes to elementor.
     *
     * @since 2.5.0
     *
     * @return array
     */
    
private static function get_additional_shapes() {
        static 
$additional_shapes null;

        if ( 
null !== $additional_shapes ) {
            return 
$additional_shapes;
        }
        
$additional_shapes = [];
        
/**
         * Additional shapes.
         *
         * Filters the shapes used by Elementor to add additional shapes.
         *
         * @since 2.0.1
         *
         * @param array $additional_shapes Additional Elementor shapes.
         */
        
$additional_shapes apply_filters'elementor/shapes/additional_shapes'$additional_shapes );
        return 
$additional_shapes;
    }

    
/**
     * Get Additional Shapes For Config
     *
     * Used to set additional shape paths for editor
     *
     * @since 2.5.0
     *
     * @return array|bool
     */
    
public static function get_additional_shapes_for_config() {
        
$additional_shapes self::get_additional_shapes();
        if ( empty( 
$additional_shapes ) ) {
            return 
false;
        }

        
$additional_shapes_config = [];
        foreach ( 
$additional_shapes as $shape_name => $shape_settings ) {
            if ( ! isset( 
$shape_settings['url'] ) ) {
                continue;
            }
            
$additional_shapes_config$shape_name ] = $shape_settings['url'];
        }

        if ( empty( 
$additional_shapes_config ) ) {
            return 
false;
        }

        return 
$additional_shapes_config;
    }
}