| Server IP : 82.208.35.60 / Your IP : 216.73.217.39 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/home/d2m/sofident_cz/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 );
}
}