Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/elementor/includes/widgets/common.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
namespace Elementor;
3
+
4
+
if ( ! defined( 'ABSPATH' ) ) {
5
+
exit; // Exit if accessed directly.
6
+
}
7
+
8
+
class Widget_Common extends Widget_Common_Base {
9
+
10
+
public function get_name() {
11
+
return 'common';
12
+
}
13
+
}
14
+