Priority File Manager

Base Directory:
/home/lvabrwqv/public_html/wp-content/plugins/elementor/includes
NameTypeSizeActions
📁 .. Folder -
📁 admin-templates Folder -
📄 api.php File 8813
Edit Download
📄 autoloader.php File 10022
Edit Download
📁 base Folder -
📄 beta-testers.php File 3059
Edit Download
📄 compatibility.php File 11221
Edit Download
📄 conditions.php File 2768
Edit Download
📁 controls Folder -
📄 db.php File 16276
Edit Download
📄 editor-assets-api.php File 1807
Edit Download
📁 editor-templates Folder -
📁 elements Folder -
📄 embed.php File 8679
Edit Download
📄 fonts.php File 64029
Edit Download
📄 frontend.php File 40070
Edit Download
📄 heartbeat.php File 2635
Edit Download
📁 interfaces Folder -
📁 libraries Folder -
📄 maintenance-mode.php File 11426
Edit Download
📄 maintenance.php File 2881
Edit Download
📁 managers Folder -
📄 plugin.php File 15979
Edit Download
📄 preview.php File 7874
Edit Download
📄 rollback.php File 4255
Edit Download
📁 settings Folder -
📄 shapes.php File 7999
Edit Download
📄 stylesheet.php File 9124
Edit Download
📁 template-library Folder -
📄 tracker.php File 17407
Edit Download
📄 user-data.php File 3522
Edit Download
📄 user.php File 10230
Edit Download
📄 utils.php File 24930
Edit Download
📁 widgets Folder -
[ 'title' => esc_html_x( 'Mountains', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/mountains.svg', 'has_flip' => true, ], 'drops' => [ 'title' => esc_html_x( 'Drops', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/drops.svg', 'has_negative' => true, 'has_flip' => true, 'height_only' => true, ], 'clouds' => [ 'title' => esc_html_x( 'Clouds', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/clouds.svg', 'has_negative' => true, 'has_flip' => true, 'height_only' => true, ], 'zigzag' => [ 'title' => esc_html_x( 'Zigzag', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/zigzag.svg', ], 'pyramids' => [ 'title' => esc_html_x( 'Pyramids', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/pyramids.svg', 'has_negative' => true, 'has_flip' => true, ], 'triangle' => [ 'title' => esc_html_x( 'Triangle', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/triangle.svg', 'has_negative' => true, ], 'triangle-asymmetrical' => [ 'title' => esc_html_x( 'Triangle Asymmetrical', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/triangle-asymmetrical.svg', 'has_negative' => true, 'has_flip' => true, ], 'tilt' => [ 'title' => esc_html_x( 'Tilt', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/tilt.svg', 'has_flip' => true, 'height_only' => true, ], 'opacity-tilt' => [ 'title' => esc_html_x( 'Tilt Opacity', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/opacity-tilt.svg', 'has_flip' => true, ], 'opacity-fan' => [ 'title' => esc_html_x( 'Fan Opacity', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/opacity-fan.svg', ], 'curve' => [ 'title' => esc_html_x( 'Curve', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/curve.svg', 'has_negative' => true, ], 'curve-asymmetrical' => [ 'title' => esc_html_x( 'Curve Asymmetrical', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/curve-asymmetrical.svg', 'has_negative' => true, 'has_flip' => true, ], 'waves' => [ 'title' => esc_html_x( 'Waves', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/waves.svg', 'has_negative' => true, 'has_flip' => true, ], 'wave-brush' => [ 'title' => esc_html_x( 'Waves Brush', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/wave-brush.svg', 'has_flip' => true, ], 'waves-pattern' => [ 'title' => esc_html_x( 'Waves Pattern', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/waves-pattern.svg', 'has_flip' => true, ], 'book' => [ 'title' => esc_html_x( 'Book', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/book.svg', 'has_negative' => true, ], 'split' => [ 'title' => esc_html_x( 'Split', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/split.svg', 'has_negative' => true, ], 'arrow' => [ 'title' => esc_html_x( 'Arrow', 'Shapes', 'elementor' ), 'image' => ELEMENTOR_ASSETS_URL . 'shapes/arrow.svg', '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 ); // BC for addons that add additional shapes the old way using `url` instead of `image`. foreach ( $additional_shapes as $shape_name => $shape_settings ) { if ( ! isset( $shape_settings['image'] ) && isset( $shape_settings['url'] ) ) { $additional_shapes[ $shape_name ]['image'] = $shape_settings['url']; } } 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; } }