appearance
5 years ago
display-options
5 years ago
services
5 years ago
dashboard.php
6 years ago
listing.php
6 years ago
wizard.php
6 years ago
dashboard.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Social sharing widget in dashboard. |
| 4 | * |
| 5 | * @var Opt_In $this |
| 6 | * |
| 7 | * @package Hustle |
| 8 | * @since 4.0.0 |
| 9 | */ |
| 10 | |
| 11 | $this->render( |
| 12 | 'admin/dashboard/templates/widget-modules', |
| 13 | array( |
| 14 | 'modules' => $social_sharings, |
| 15 | 'widget_name' => Opt_In_Utils::get_module_type_display_name( Hustle_Module_Model::SOCIAL_SHARING_MODULE, true, true ), |
| 16 | 'widget_type' => Hustle_Module_Model::SOCIAL_SHARING_MODULE, |
| 17 | 'capability' => $capability, |
| 18 | 'smallcaps_singular' => Opt_In_Utils::get_module_type_display_name( Hustle_Module_Model::SOCIAL_SHARING_MODULE ), |
| 19 | 'capitalize_singular' => Opt_In_Utils::get_module_type_display_name( Hustle_Module_Model::SOCIAL_SHARING_MODULE, false, true ), |
| 20 | 'description' => esc_html__( 'Make it easy for your visitors to share your content by adding floating or inline social sharing prompts.', 'hustle' ), |
| 21 | ) |
| 22 | ); |
| 23 |