| Server IP : 87.229.120.60 / Your IP : 216.73.216.245 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-pro/modules/link-actions/ |
Upload File : |
<?php
namespace ElementorPro\Modules\LinkActions;
use ElementorPro\Base\Module_Base;
use ElementorPro\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* @deprecated since 2.9.0
*/
class Module extends Module_Base {
/**
* Get module name.
*
* Retrieve the module name.
*
* @since 2.3.0
* @access public
*
* @return string Module name.
*/
public function get_name() {
return 'link-actions';
}
/**
* Create Action URL.
*
* @param string $action
* @param array $settings Optional.
*
* @deprecated 2.9.0 Use `Plugin::elementor()->frontend->create_action_hash()` instead
*
* @return string
*/
public static function create_action_url( $action, array $settings = [] ) {
_deprecated_function( __METHOD__, '2.9.0', 'Plugin::elementor()->frontend->create_action_hash()' );
return Plugin::elementor()->frontend->create_action_hash( $action, $settings );
}
}