| Server IP : 87.229.120.60 / Your IP : 216.73.216.86 Web Server : Apache System : Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64 User : server ( 1002) PHP Version : 8.3.20 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/faktorteam/www/wp-content/plugins/elementor/modules/shapes/ |
Upload File : |
<?php
namespace Elementor\Modules\Shapes;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Module extends \Elementor\Core\Base\Module {
/**
* Return a translated user-friendly list of the available SVG shapes.
*
* @param bool $add_custom Determine if the output should include the `Custom` option.
*
* @return array List of paths.
*/
public static function get_paths( $add_custom = true ) {
$paths = [
'wave' => __( '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;
}
/**
* Gets an SVG path name as a parameter and returns its SVG markup from the `svg-paths`
* folder under the assets directory.
*
* @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';
}
}