Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/bdthemes-element-pack/modules/chart/module.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
namespace ElementPack\Modules\Chart;
3
+
4
+
use ElementPack\Base\Element_Pack_Module_Base;
5
+
6
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
7
+
8
+
class Module extends Element_Pack_Module_Base {
9
+
10
+
public function get_name() {
11
+
return 'chart';
12
+
}
13
+
14
+
public function get_widgets() {
15
+
16
+
$widgets = [
17
+
'Chart',
18
+
];
19
+
20
+
return $widgets;
21
+
}
22
+
}
23
+