PATH:
home
/
lab2454c
/
adenbic.com
/
wp-content
/
plugins
/
newsletter
/
subscription
<?php defined('ABSPATH') || exit; class NewsletterSubscriptionAdmin extends NewsletterModuleAdmin { static $instance; /** * @return NewsletterSubscriptionAdmin */ static function instance() { if (self::$instance == null) { self::$instance = new self(); } return self::$instance; } function __construct() { parent::__construct('subscription'); add_action('admin_init', array($this, 'hook_admin_init')); } function hook_admin_init() { if (function_exists('register_block_type')) { // Add custom blocks to Gutenberg wp_register_script('tnp-blocks', plugins_url('newsletter') . '/includes/tnp-blocks.js', array('wp-block-editor', 'wp-blocks', 'wp-element', 'wp-components'), NEWSLETTER_VERSION); register_block_type('tnp/minimal', array('editor_script' => 'tnp-blocks')); } } function admin_menu() { // $this->add_menu_page('options', __('Subscription', 'newsletter')); // $this->add_menu_page('lists', __('Lists', 'newsletter')); $this->add_admin_page('form', __('Subscription', 'newsletter')); $this->add_admin_page('profile', __('Subscription', 'newsletter')); $this->add_admin_page('antispam', __('Security', 'newsletter')); $this->add_admin_page('forms', __('Forms', 'newsletter')); $this->add_admin_page('template', __('Template', 'newsletter')); $this->add_admin_page('index', __('Overview', 'newsletter')); $this->add_admin_page('customfields', __('Custom fields', 'newsletter')); $this->add_admin_page('welcome', 'Welcome email'); $this->add_admin_page('debug', 'Debug'); } function get_form_options() { return $this->get_options('form'); } function get_form_option($key) { return $this->get_option($key, 'form'); } function get_form_text($key) { return $this->get_text($key, 'form'); } }
[-] email.html
[edit]
[-] debug.php
[edit]
[-] customfields.php
[edit]
[-] page.php
[edit]
[-] options.php
[edit]
[+]
..
[-] lists.php
[edit]
[-] template.php
[edit]
[-] subscription.php
[edit]
[-] forms.php
[edit]
[-] welcome.php
[edit]
[-] subscription-admin.php
[edit]
[-] antispam.php
[edit]
[+]
_
[-] form.php
[edit]
[-] nav.php
[edit]