Files
szkoleniauryzaj.pl/wp-content/plugins/pixelyoursite/includes/views/html-logs.php
2026-04-26 23:47:49 +02:00

54 lines
1.8 KiB
PHP

<?php
namespace PixelYourSite;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<div class="card card-static">
<div class="card-header ">
<?php PYS()->render_switcher_input('pys_logs_enable');?> Meta API Logs
<div style="float: right;margin-top: 10px;">
<a style="margin-right: 30px"
href="<?php echo esc_url( buildAdminUrl( 'pixelyoursite', 'logs' ) ); ?>&clear_plugin_logs=true">Clear
Meta API Logs</a>
<a href="<?= PYS_Logger::get_log_file_url() ?>" target="_blank" download>Download Meta API Logs</a>
</div>
</div>
<div class="card-body">
<textarea style="white-space: nowrap;width: 100%;height: 500px;"><?php
echo PYS()->getLog()->getLogs();
?></textarea>
</div>
</div>
<?php if ( Pinterest()->enabled() ) : ?>
<div class="card card-static">
<div class="card-header ">
<?php Pinterest()->render_switcher_input( 'logs_enable' ); ?> Pinterest API Logs
<div style="float: right;margin-top: 10px;">
<a style="margin-right: 30px"
href="<?php echo esc_url( buildAdminUrl( 'pixelyoursite', 'logs' ) ); ?>&clear_pinterest_logs=true">Clear
Pinterest API Logs</a>
<a href="<?= Pinterest_logger::get_log_file_url() ?>" target="_blank" download>Download Pinterest API
Logs</a>
</div>
</div>
<div class="card-body">
<textarea style="white-space: nowrap;width: 100%;height: 500px;"><?php
echo Pinterest()->getLog()->getLogs();
?></textarea>
</div>
</div>
<?php endif; ?>
<div class="row justify-content-center">
<div class="col-4">
<button class="btn btn-block btn-sm btn-save">Save Settings</button>
</div>
</div>