PluginProbe
Hustle – Email Marketing, Lead Generation, Optins, Popups / 7.6.4
Hustle – Email Marketing, Lead Generation, Optins, Popups v7.6.4
7.8.14.2 7.8.14 7.8.14.1 7.8.13 7.8.13.1 trunk 3.0 3.1 3.1.1 3.1.2 3.1.3 3.1.4 4.3.2 4.4.4 4.4.5 4.4.5.1 4.4.5.4 4.6 4.6.1.1 4.6.1.4 4.7.0.2 4.7.0.3 4.7.0.7 4.7.0.9 4.7.1.0 All 103 releases
wordpress-popup / views / admin / slidein / dashboard.php
dashboard.php
28 lines 842 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Slidein widget in dashboard.
4 *
5 * @var Opt_In $this
6 *
7 * @package Hustle
8 * @since 4.0.0
9 */
10
11 $capitalize_singular = esc_html__( 'Slide-in', 'hustle' );
12 $capitalize_plural = esc_html__( 'Slide-ins', 'hustle' );
13 $smallcaps_singular = esc_html__( 'slide-in', 'hustle' );
14 $smallcaps_plural = esc_html__( 'slide-in', 'hustle' );
15
16 $this->render(
17 'admin/dashboard/templates/widget-modules',
18 array(
19 'modules' => $slideins,
20 'widget_name' => $capitalize_plural,
21 'widget_type' => Hustle_Module_Model::SLIDEIN_MODULE,
22 'capability' => $capability,
23 'description' => esc_html__( 'Slide-ins can be used to highlight promotions without covering the whole screen.', 'hustle' ),
24 'smallcaps_singular' => $smallcaps_singular,
25 'capitalize_singular' => $capitalize_singular,
26 )
27 );
28