Fragen\GitHub_Updater\Settings::print_section_remote_management PHP Метод

print_section_remote_management() публичный Метод

Print the Remote Management text.
    public function print_section_remote_management()
    {
        $api_key = get_site_option('github_updater_api_key');
        $api_url = add_query_arg(array('action' => 'github-updater-update', 'key' => $api_key), admin_url('admin-ajax.php'));
        ?>
		<p>
			<?php 
        esc_html_e('Please refer to README for complete list of attributes. RESTful endpoints begin at:', 'github-updater');
        ?>
			<br>
			<span style="font-family:monospace;"><?php 
        echo $api_url;
        ?>
</span>
		<p>
			<?php 
        esc_html_e('Use of Remote Management services may result increase some page load speeds only for `admin` level users in the dashboard.', 'github-updater');
        ?>
		</p>
		<?php 
    }