| 1 |
<?php |
| 2 |
/** |
| 3 |
* Module Name: Action Bar (Experimental) |
| 4 |
* Module Description: An easy to use way for visitors to follow, like, and comment on your site. |
| 5 |
* Sort Order: 40 |
| 6 |
* Recommendation Order: 18 |
| 7 |
* First Introduced: 11.4 |
| 8 |
* Requires Connection: Yes |
| 9 |
* Auto Activate: No |
| 10 |
* Module Tags: Social |
| 11 |
* Feature: Engagement |
| 12 |
* Additional Search Queries: adminbar, actionbar, comments, likes, follow, sharing |
| 13 |
* |
| 14 |
* @package automattic/jetpack |
| 15 |
*/ |
| 16 |
|
| 17 |
use Automattic\Jetpack\Action_Bar; |
| 18 |
|
| 19 |
return; // Return out early for now. The module is not ready for production yet. |
| 20 |
|
| 21 |
( new Action_Bar() )->init(); // phpcs:ignore Squiz.PHP.NonExecutableCode.Unreachable |
| 22 |
|