# tableberg/0.5.5/includes/Constants.php

Tableberg – Simple Gutenberg Table Block, version 0.5.5. 49 lines.

- Page: https://pluginprobe.com/plugins/tableberg/0.5.5/code/includes/Constants.php
- Raw: https://pluginprobe.com/plugins/tableberg/0.5.5/raw/includes/Constants.php
- Modified: 2024-07-31T03:53:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/0.5.5/code/includes/Constants.php#L10-L20`.

```php
<?php

/**
 * The file defines global constants for the plugin
 *
 *  @package Tableberg
 */

namespace Tableberg;

/**
 * The core plugin class.
 *
 * This is used for defining constants which are used throughout plugin.
 */
class Constants {

	const PLUGIN_VERSION = '0.5.5';

	const PLUGIN_NAME = 'tableberg';

	/**
	 * Get Plugin version
	 *
	 * @return string
	 */
	public static function plugin_version() {
		return self::PLUGIN_VERSION;
	}

	/**
	 * Get Plugin name
	 *
	 * @return string
	 */
	public static function plugin_name() {
		return self::PLUGIN_NAME;
	}

	/**
	 * Get Plugin TEXT DOMAIN
	 *
	 * @return string
	 */
	public static function text_domain() {
		return 'tableberg';
	}
}

```
