PluginProbe
Send Users Email – Email Subscribers, Email Marketing Newsletter / trunk
Send Users Email – Email Subscribers, Email Marketing Newsletter vtrunk
2.0.3 2.0.2 2.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 All 51 releases
send-users-email / includes / class-external-lists-dashboard.php

class-external-lists-dashboard.php in Send Users Email – Email Subscribers, Email Marketing Newsletter trunk, at includes/class-external-lists-dashboard.php

17 lines 456 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 class SUE_External_Lists_Dashboard
3 {
4 public static function init()
5 {
6 add_action('sue_external_lists_dashboard', [self::class, 'render_dashboard'], 20, 2);
7 }
8
9 public static function render_dashboard( $action, $args )
10 {
11 $template_args = [
12 'action' => External_Lists::get_action_name(),
13 ];
14
15 sue_render_admin_template('external-lists/dashboard.php', $template_args);
16 }
17 }