# datafeedr-api/1.2.3/src/Shortcodes/TestShortcodeMsg.php

Datafeedr API, version 1.2.3. 27 lines.

- Page: https://pluginprobe.com/plugins/datafeedr-api/1.2.3/code/src/Shortcodes/TestShortcodeMsg.php
- Raw: https://pluginprobe.com/plugins/datafeedr-api/1.2.3/raw/src/Shortcodes/TestShortcodeMsg.php
- Modified: 2018-02-08T16:35:32+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/datafeedr-api/1.2.3/code/src/Shortcodes/TestShortcodeMsg.php#L10-L20`.

```php
<?php namespace Datafeedr\Api\Shortcodes;

use Datafeedr\Api\Wuwei\Shortcode\Shortcode_Interface;

/**
 * Class TestShortcodeMsg
 *
 * Add a test Shortcode.
 *
 * @since 2.0.0
 */
class TestShortcodeMsg implements Shortcode_Interface {

	/**
	 * {@inheritdoc}
	 */
	public static function get_name() {
		return 'datafeedr-test-shortcode';
	}

	/**
	 * {@inheritdoc}
	 */
	public function generate_output( $attrs, $content = '' ) {
		return '<strong>Our shortcodes are working.</strong>';
	}
}
```
