芝麻web文件管理V1.00
编辑当前文件:/var/www/cognitio.in/wp-content/plugins/elementor/includes/shapes.php
[ '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_shapes, self::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; } }