__( 'Wave', 'elementor' ), 'arc' => __( 'Arc', 'elementor' ), 'circle' => __( 'Circle', 'elementor' ), 'line' => __( 'Line', 'elementor' ), 'oval' => __( 'Oval', 'elementor' ), 'spiral' => __( 'Spiral', 'elementor' ), ]; if ( $add_custom ) { $paths['custom'] = __( 'Custom', 'elementor' ); } return $paths; } /** * @param $path string Path name. * * @return string The path SVG markup. */ public static function get_path_svg( $path ) { $file_name = ELEMENTOR_ASSETS_PATH . 'svg-paths/' . $path . '.svg'; if ( ! is_file( $file_name ) ) { return ''; } return file_get_contents( $file_name ); } /** * Get the module's associated widgets. * * @return string[] */ protected function get_widgets() { return [ 'TextPath', ]; } /** * Retrieve the module name. * * @return string */ public function get_name() { return 'shapes'; } }