File "showmain.php"
Full Path: /home/rfaztorb/public_html/wordpress/search/file/pomo/updraft/plugins-old/updraftcentral/actions/showmain.php
File size: 1.16 KB
MIME-type: text/x-php
Charset: utf-8
<?php
if (!defined('UD_CENTRAL_DIR')) die('Security check');
/**
* Shows default dashboard. List of sites to manage, if available
*/
class UpdraftRC_Action_showmain extends UpdraftRC_Action {
// No nonce required to show the dashboard
public $check_nonce = false;
public function render() {
// Show the table of existing sites
$sites_container_classes = apply_filters('updraftcentral_sites_container_classes', 'updraftcentral-show-in-other-tabs updraftcentral-hide-in-tab-notices');
?>
<noscript>
<p><?php echo __('UpdraftCentral is a JavaScript application.', 'updraftcentral').' '.__('You will need to have JavaScript enabled in order to use it.', 'updraftcentral');?></p>
</noscript>
<div id="updraftcentral_dashboard_existingsites_container" class="<?php echo esc_attr($sites_container_classes);?>">
<div id="updraftcentral_dashboard_existingsites">
<?php echo wp_kses($this->user->get_sites_html(), wp_kses_allowed_html('post'));?>
</div>
</div>
<div id="updraftcentral_dashboard_loading"><?php esc_html_e('Loading...', 'updraftcentral');?><span class="updraftcentral_spinner updraftcentral_loading_spinner"></span></div>
<?php
}
}