Sindbad~EG File Manager
<?php
namespace SG_Security\Rest;
use SG_Security;
use SiteGround_Helper\Helper_Service;
/**
* Rest Helper class that manages the plugin dashboard.
*/
class Rest_Helper_Dashboard extends Rest_Helper {
/**
* Sends notifications info.
*
* @since 1.0.0
*/
public function notifications() {
// Prepare the response array.
$response = array();
// Add notification if we have updates available.
if ( true === Helper_Service::has_updates() ) {
$response = array(
array(
'title' => __( 'YOUR WORDPRESS NEEDS ATTENTION', 'sg-security' ),
'text' => __( 'There are new updates for your website. Keeping your WordPress updated is crucial for your website security', 'sg-security' ),
'button_text' => __( 'Update', 'sg-security' ),
'button_link' => admin_url( 'update-core.php' ),
),
);
}
// Send the response.
return self::send_response(
'',
1,
$response
);
}
/**
* Send information about the security hardening boxes.
*
* @since 1.0.0
*/
public function hardening() {
return self::send_response(
'',
1,
array(
array(
'icon' => 'product-ssl-wildcard',
'icon_color' => 'royal',
'text' => __( 'Set up rules to harden your website security and prevent malware, bruteforce and other security issues.', 'sg-security' ),
'button_text' => __( 'Manage Security', 'sg-security' ),
'button_link' => admin_url( 'admin.php?page=site-security' ),
'title' => __( 'Site Security', 'sg-security' ),
),
array(
'icon' => 'product-ssl-encryption',
'icon_color' => 'grassy',
'text' => __( 'Protect your login from unauthorised visitors, bots and other human or automated attacks.', 'sg-security' ),
'button_text' => __( 'Manage Login', 'sg-security' ),
'button_link' => admin_url( 'admin.php?page=login-settings' ),
'title' => __( 'Login Security', 'sg-security' ),
),
)
);
}
/**
* Sends information about the free ebook.
*
* @since 1.0.2
*/
public function ebook() {
return self::send_response(
'',
1,
$this->get_banners()
);
}
/**
* Sends information whether we should display the rating box
*
* @since 1.0.2
*
* @param object $request Request data.
*/
public function rate( $request ) {
$show = $this->validate_and_get_option_value( $request, 'show', false );
if ( false === $show ) {
return self::send_response(
'',
1,
array(
'show' => intval( get_option( 'sg_security_show_rating', 1 ) ),
)
);
}
update_option( 'sg_security_show_rating', $show );
return self::send_response(
'',
1,
array(
'show' => intval( $show ),
)
);
}
/**
* Get Dashboard banner.
*
* @since 1.4.10
*
* @return array $banner The banner array image, link and title.
*/
public function get_banners() {
// Get the locale.
$locale = get_locale();
// Determine the type of asset we are going to show.
$type = Helper_Service::is_siteground() ? 'ebook' : 'banners';
// Default banners.
$banners = array(
'ebook' => array(
'it_IT' => array(
'image' => SG_Security\URL . '/assets/images/banners/ebook_it.png',
'link' => 'https://it.siteground.com/ebook-sicurezza-wordpress?utm_source=sgsecurityplugin',
'title' => 'eBook gratuit',
),
'es_ES' => array(
'image' => SG_Security\URL . '/assets/images/banners/ebook_es.png',
'link' => 'https://www.siteground.es/ebook-seguridad-wordpress?utm_source=sgsecurityplugin',
'title' => 'Ebook gratuito',
),
'de_DE' => array(
'image' => SG_Security\URL . '/assets/images/banners/ebook_de.png',
'link' => 'https://de.siteground.com/wordpress-security-ebook?utm_source=sgsecurityplugin',
'title' => 'Kostenloses e-book',
),
'default' => array(
'image' => SG_Security\URL . '/assets/images/banners/ebook.png',
'link' => 'https://www.siteground.com/wordpress-security-ebook?utm_source=sgsecurityplugin',
'title' => 'Free Ebook',
),
),
'banners' => array(
'it_IT' => array(
'image' => SG_Security\URL . '/assets/images/banners/banner_it.png',
'link' => 'https://it.siteground.com/hosting-wordpress?mktafcode=a805e6613d5c68d989401d7137d91194&utm_source=sgsecurityplugin',
'title' => 'Ottieni un hosting WordPress sicuro',
),
'es_ES' => array(
'image' => SG_Security\URL . '/assets/images/banners/banner_es.png',
'link' => 'https://www.siteground.es/hosting-wordpress.htm?mktafcode=a805e6613d5c68d989401d7137d91194&utm_source=sgsecurityplugin',
'title' => 'Consigue hosting seguro',
),
'de_DE' => array(
'image' => SG_Security\URL . '/assets/images/banners/banner_de.png',
'link' => 'https://de.siteground.com/wordpress-hosting.htm?mktafcode=a805e6613d5c68d989401d7137d91194&utm_source=sgsecurityplugin',
'title' => 'Sicheres WordPress-Hosting',
),
'default' => array(
'image' => SG_Security\URL . '/assets/images/banners/banner.png',
'link' => 'https://www.siteground.com/wordpress-hosting.htm?mktafcode=a805e6613d5c68d989401d7137d91194&utm_source=sgsecurityplugin',
'title' => 'Get Secure WordPress Hosting',
),
),
);
return array_key_exists( $locale, $banners[ $type ] ) ? $banners[ $type ][ $locale ] : $banners[ $type ]['default'];
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists