PluginProbe
Tableberg – Simple Gutenberg Table Block / 0.4.1
Tableberg – Simple Gutenberg Table Block v0.4.1
1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 0.5.8 All 41 releases
tableberg / includes / Constants.php

Constants.php in Tableberg – Simple Gutenberg Table Block 0.4.1, at includes/Constants.php

49 lines 700 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * The file defines global constants for the plugin
5 *
6 * @package Tableberg
7 */
8
9 namespace Tableberg;
10
11 /**
12 * The core plugin class.
13 *
14 * This is used for defining constants which are used throughout plugin.
15 */
16 class Constants {
17
18 const PLUGIN_VERSION = '0.4.1';
19
20 const PLUGIN_NAME = 'tableberg';
21
22 /**
23 * Get Plugin version
24 *
25 * @return string
26 */
27 public static function plugin_version() {
28 return self::PLUGIN_VERSION;
29 }
30
31 /**
32 * Get Plugin name
33 *
34 * @return string
35 */
36 public static function plugin_name() {
37 return self::PLUGIN_NAME;
38 }
39
40 /**
41 * Get Plugin TEXT DOMAIN
42 *
43 * @return string
44 */
45 public static function text_domain() {
46 return 'tableberg';
47 }
48 }
49