Files
wrapartamenty.pl/wp-content/plugins/elementor-pro/modules/call-to-action/module.php
Roman Pyrih d6241cfa7a first commit
2024-12-19 15:27:13 +01:00

22 lines
332 B
PHP

<?php
namespace ElementorPro\Modules\CallToAction;
use ElementorPro\Base\Module_Base;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Module extends Module_Base {
public function get_widgets() {
return [
'Call_To_Action',
];
}
public function get_name() {
return 'call-to-action';
}
}