File "permalink-manager-debug.php"
Full Path: /home/veodprin/public_html/wp-content/plugins/permalink-manager/includes/views/permalink-manager-debug.php
File size: 6.18 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Display the page where the slugs could be regenerated or replaced
*/
class Permalink_Manager_Debug {
public function __construct() {
add_filter( 'permalink_manager_sections', array( $this, 'add_debug_section' ), 4 );
}
/**
* Add a new section to the Permalink Manager UI
*
* @param array $admin_sections
*
* @return array
*/
public function add_debug_section( $admin_sections ) {
$admin_sections['debug'] = array(
'name' => __( 'Debug', 'permalink-manager' ),
'function' => array( 'class' => 'Permalink_Manager_Debug', 'method' => 'output' )
);
return $admin_sections;
}
/**
* Get a URL pointing to the "Debug" tab in Permalink Manager UI
*
* @param string $field
*
* @return string
*/
public function get_remove_settings_url( $field = '' ) {
return add_query_arg( array(
'section' => 'debug',
'remove-permalink-manager-settings' => $field,
'permalink-manager-nonce' => wp_create_nonce( 'permalink-manager' )
), Permalink_Manager_Admin_Functions::get_admin_url() );
}
/**
* Define and display HTML output of a new section with the "Debug" data
*
* @return string
*/
public function output() {
global $permalink_manager_options, $permalink_manager_uris, $permalink_manager_permastructs, $permalink_manager_redirects, $permalink_manager_external_redirects, $wpdb;
// Count permalinks and calculate the size of array
if ( is_array( $permalink_manager_uris ) ) {
$permalink_manager_uris_size = $wpdb->get_var( "SELECT CHAR_LENGTH(option_value) FROM {$wpdb->options} WHERE option_name = 'permalink-manager-uris'" );
$permalink_manager_uris_size = ( is_numeric( ( $permalink_manager_uris_size ) ) ) ? round ($permalink_manager_uris_size / 1024, 2 ) . __( 'kb', 'permalink-manager' ) : '-';
$permalink_manager_uris_count = count( $permalink_manager_uris );
$permalink_manager_uris_stats = sprintf( __( 'Custom permalinks count: <strong>%s</strong> | Custom permalinks array size in DB: <strong>%s</strong>', 'permalink-manager' ), $permalink_manager_uris_count, $permalink_manager_uris_size );
} else {
$permalink_manager_uris_stats = __( 'The custom permalinks array has not been stored in the database yet.', 'permalink-manager' );
}
$sections_and_fields = apply_filters( 'permalink_manager_debug_fields', array(
'debug-data' => array(
'section_name' => __( 'Debug data', 'permalink-manager' ),
'fields' => array(
'uris' => array(
'type' => 'textarea',
'description' => sprintf( '%s<br />%s<br /><strong><a class="pm-confirm-action" href="%s">%s</a></strong>', __( 'List of the URIs generated by this plugin.', 'permalink-manager' ), $permalink_manager_uris_stats, $this->get_remove_settings_url( 'uris' ), __( 'Remove all custom permalinks', 'permalink-manager' ) ),
'label' => __( 'Array with URIs', 'permalink-manager' ),
'input_class' => 'short-textarea widefat',
'value' => ( $permalink_manager_uris ) ? print_r( $permalink_manager_uris, true ) : ''
),
'custom-redirects' => array(
'type' => 'textarea',
'description' => sprintf( '%s<br /><strong><a class="pm-confirm-action" href="%s">%s</a></strong>', __( 'List of custom redirects set-up by this plugin.', 'permalink-manager' ), $this->get_remove_settings_url( 'redirects' ), __( 'Remove all custom redirects', 'permalink-manager' ) ),
'label' => __( 'Array with redirects', 'permalink-manager' ),
'input_class' => 'short-textarea widefat',
'value' => ( $permalink_manager_redirects ) ? print_r( $permalink_manager_redirects, true ) : ''
),
'external-redirects' => array(
'type' => 'textarea',
'description' => sprintf( '%s<br /><strong><a class="pm-confirm-action" href="%s">%s</a></strong>', __( 'List of external redirects set-up by this plugin.', 'permalink-manager' ), $this->get_remove_settings_url( 'external-redirects' ), __( 'Remove all external redirects', 'permalink-manager' ) ),
'label' => __( 'Array with external redirects', 'permalink-manager' ),
'input_class' => 'short-textarea widefat',
'value' => ( $permalink_manager_external_redirects ) ? print_r( array_filter( $permalink_manager_external_redirects ), true ) : ''
),
'permastructs' => array(
'type' => 'textarea',
'description' => sprintf( '%s<br /><strong><a class="pm-confirm-action" href="%s">%s</a></strong>', __( 'List of permastructures set-up by this plugin.', 'permalink-manager' ), $this->get_remove_settings_url( 'permastructs' ), __( 'Remove all permastructures settings', 'permalink-manager' ) ),
'label' => __( 'Array with permastructures', 'permalink-manager' ),
'input_class' => 'short-textarea widefat',
'value' => ( $permalink_manager_permastructs ) ? print_r( $permalink_manager_permastructs, true ) : ''
),
'settings' => array(
'type' => 'textarea',
'description' => sprintf( '%s<br /><strong><a class="pm-confirm-action" href="%s">%s</a></strong>', __( 'List of plugin settings.', 'permalink-manager' ), $this->get_remove_settings_url( 'settings' ), __( 'Remove all plugin settings', 'permalink-manager' ) ),
'label' => __( 'Array with settings used in this plugin.', 'permalink-manager' ),
'input_class' => 'short-textarea widefat',
'value' => print_r( $permalink_manager_options, true )
)
)
)
) );
// Now get the HTML output
$output = '';
foreach ( $sections_and_fields as $section_id => $section ) {
$output .= ( isset( $section['section_name'] ) ) ? "<h3>{$section['section_name']}</h3>" : "";
$output .= ( isset( $section['description'] ) ) ? "<p class=\"description\">{$section['description']}</p>" : "";
$output .= "<table class=\"form-table fixed-table\">";
// Loop through all fields assigned to this section
foreach ( $section['fields'] as $field_id => $field ) {
$field_name = "{$section_id}[$field_id]";
$field['container'] = 'row';
$output .= Permalink_Manager_Admin_Functions::generate_option_field( $field_name, $field );
}
// End the section
$output .= "</table>";
}
return $output;
}
}