__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace WPForms\Admin\Pages;
/**
* Constant Contact Sub-page.
*
* @since 1.7.3
*/
class ConstantContact {
/**
* Determine if the class is allowed to be loaded.
*
* @since 1.7.3
*/
private function allow_load() {
return wpforms_is_admin_page( 'page', 'constant-contact' );
}
/**
* Initialize class.
*
* @since 1.7.3
*/
public function init() {
if ( ! $this->allow_load() ) {
return;
}
$this->hooks();
}
/**
* Hooks.
*
* @since 1.7.3
*/
private function hooks() {
add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_assets' ] );
add_action( 'wpforms_admin_page', [ $this, 'view' ] );
}
/**
* Enqueue JS and CSS files.
*
* @since 1.7.3
*/
public function enqueue_assets() {
// Lity.
wp_enqueue_style(
'wpforms-lity',
WPFORMS_PLUGIN_URL . 'assets/lib/lity/lity.min.css',
null,
'3.0.0'
);
wp_enqueue_script(
'wpforms-lity',
WPFORMS_PLUGIN_URL . 'assets/lib/lity/lity.min.js',
[ 'jquery' ],
'3.0.0',
true
);
}
/**
* Page view.
*
* @since 1.7.3
*/
public function view() {
$sign_up_link = get_option( 'wpforms_constant_contact_signup', 'https://constant-contact.evyy.net/c/11535/341874/3411?sharedid=wpforms' );
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo wpforms_render(
'admin/pages/constant-contact',
[
'sign_up_link' => is_string( $sign_up_link ) ? $sign_up_link : '',
'wpbeginners_guide_link' => 'https://www.wpbeginner.com/beginners-guide/why-you-should-start-building-your-email-list-right-away',
],
true
);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Community.php | File | 6.17 KB | 0775 |
|
| ConstantContact.php | File | 1.58 KB | 0775 |
|
| Duplicator.php | File | 12.06 KB | 0775 |
|
| Page.php | File | 18.45 KB | 0775 |
|
| PrivacyCompliance.php | File | 11.22 KB | 0775 |
|
| SMTP.php | File | 16.04 KB | 0775 |
|
| SugarCalendar.php | File | 11.21 KB | 0775 |
|
| Templates.php | File | 3.37 KB | 0775 |
|
| UncannyAutomator.php | File | 11.47 KB | 0775 |
|