X7ROOT File Manager
Current Path:
/home/notabjze/tailoredplastiq.com/wp-content/plugins/wordpress-seo/admin
home
/
notabjze
/
tailoredplastiq.com
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
ðŸ“
..
📄
admin-settings-changed-listener.php
(2.39 KB)
ðŸ“
ajax
📄
ajax.php
(11.25 KB)
ðŸ“
capabilities
📄
class-admin-asset-analysis-worker-location.php
(1.81 KB)
📄
class-admin-asset-dev-server-location.php
(1.63 KB)
📄
class-admin-asset-location.php
(488 B)
📄
class-admin-asset-manager.php
(19.68 KB)
📄
class-admin-asset-seo-location.php
(2.08 KB)
📄
class-admin-editor-specific-replace-vars.php
(6.34 KB)
📄
class-admin-gutenberg-compatibility-notification.php
(2.55 KB)
📄
class-admin-help-panel.php
(2.7 KB)
📄
class-admin-init.php
(10.71 KB)
📄
class-admin-recommended-replace-vars.php
(5.98 KB)
📄
class-admin-user-profile.php
(3.25 KB)
📄
class-admin-utils.php
(2.14 KB)
📄
class-admin.php
(13.13 KB)
📄
class-asset.php
(4.3 KB)
📄
class-bulk-description-editor-list-table.php
(2.05 KB)
📄
class-bulk-editor-list-table.php
(29.41 KB)
📄
class-bulk-title-editor-list-table.php
(2.23 KB)
📄
class-collector.php
(1005 B)
📄
class-config.php
(5.08 KB)
📄
class-database-proxy.php
(7.5 KB)
📄
class-export.php
(3.46 KB)
📄
class-expose-shortlinks.php
(8.23 KB)
📄
class-gutenberg-compatibility.php
(2.47 KB)
📄
class-meta-columns.php
(27.3 KB)
📄
class-my-yoast-proxy.php
(6.14 KB)
📄
class-option-tab.php
(2.21 KB)
📄
class-option-tabs-formatter.php
(2.84 KB)
📄
class-option-tabs.php
(2.26 KB)
📄
class-paper-presenter.php
(3.52 KB)
📄
class-plugin-availability.php
(10.06 KB)
📄
class-plugin-conflict.php
(4.04 KB)
📄
class-premium-popup.php
(2.81 KB)
📄
class-premium-upsell-admin-block.php
(5.11 KB)
📄
class-primary-term-admin.php
(7.35 KB)
📄
class-product-upsell-notice.php
(5.75 KB)
📄
class-remote-request.php
(3.13 KB)
📄
class-schema-person-upgrade-notification.php
(2.23 KB)
📄
class-suggested-plugins.php
(4.33 KB)
📄
class-wincher-dashboard-widget.php
(3.53 KB)
📄
class-yoast-columns.php
(3.52 KB)
📄
class-yoast-dashboard-widget.php
(3.96 KB)
📄
class-yoast-form.php
(35.74 KB)
📄
class-yoast-input-validation.php
(7.2 KB)
📄
class-yoast-network-admin.php
(9.97 KB)
📄
class-yoast-network-settings-api.php
(4.18 KB)
📄
class-yoast-notification-center.php
(26.06 KB)
📄
class-yoast-notification.php
(9.82 KB)
📄
class-yoast-notifications.php
(7.63 KB)
📄
class-yoast-plugin-conflict.php
(10.33 KB)
ðŸ“
endpoints
ðŸ“
exceptions
ðŸ“
filters
ðŸ“
formatter
ðŸ“
google_search_console
ðŸ“
import
📄
index.php
(38 B)
📄
interface-collection.php
(257 B)
📄
interface-installable.php
(254 B)
ðŸ“
listeners
ðŸ“
menu
ðŸ“
metabox
ðŸ“
notifiers
ðŸ“
pages
ðŸ“
roles
ðŸ“
services
ðŸ“
statistics
ðŸ“
taxonomy
ðŸ“
tracking
ðŸ“
views
ðŸ“
watchers
Editing: class-export.php
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\Export */ /** * Class WPSEO_Export. * * Class with functionality to export the WP SEO settings. */ class WPSEO_Export { /** * Holds the nonce action. * * @var string */ public const NONCE_ACTION = 'wpseo_export'; /** * Holds the export data. * * @var string */ private $export = ''; /** * Holds whether the export was a success. * * @var bool */ public $success; /** * Handles the export request. * * @return void */ public function export() { check_admin_referer( self::NONCE_ACTION ); $this->export_settings(); $this->output(); } /** * Outputs the export. * * @return void */ public function output() { if ( ! WPSEO_Capability_Utils::current_user_can( 'wpseo_manage_options' ) ) { esc_html_e( 'You do not have the required rights to export settings.', 'wordpress-seo' ); return; } echo '<p id="wpseo-settings-export-desc">'; printf( /* translators: %1$s expands to Import settings */ esc_html__( 'Copy all these settings to another site\'s %1$s tab and click "%1$s" there.', 'wordpress-seo' ), esc_html__( 'Import settings', 'wordpress-seo' ) ); echo '</p>'; /* translators: %1$s expands to Yoast SEO */ echo '<label for="wpseo-settings-export" class="yoast-inline-label">' . sprintf( __( 'Your %1$s settings:', 'wordpress-seo' ), 'Yoast SEO' ) . '</label><br />'; echo '<textarea id="wpseo-settings-export" rows="20" cols="100" aria-describedby="wpseo-settings-export-desc">' . esc_textarea( $this->export ) . '</textarea>'; } /** * Exports the current site's WP SEO settings. * * @return void */ private function export_settings() { $this->export_header(); foreach ( WPSEO_Options::get_option_names() as $opt_group ) { $this->write_opt_group( $opt_group ); } } /** * Writes the header of the export. * * @return void */ private function export_header() { $header = sprintf( /* translators: %1$s expands to Yoast SEO, %2$s expands to Yoast.com */ esc_html__( 'These are settings for the %1$s plugin by %2$s', 'wordpress-seo' ), 'Yoast SEO', 'Yoast.com' ); $this->write_line( '; ' . $header ); } /** * Writes a line to the export. * * @param string $line Line string. * @param bool $newline_first Boolean flag whether to prepend with new line. * * @return void */ private function write_line( $line, $newline_first = false ) { if ( $newline_first ) { $this->export .= PHP_EOL; } $this->export .= $line . PHP_EOL; } /** * Writes an entire option group to the export. * * @param string $opt_group Option group name. * * @return void */ private function write_opt_group( $opt_group ) { $this->write_line( '[' . $opt_group . ']', true ); $options = get_option( $opt_group ); if ( ! is_array( $options ) ) { return; } foreach ( $options as $key => $elem ) { if ( is_array( $elem ) ) { $count = count( $elem ); for ( $i = 0; $i < $count; $i++ ) { $elem_check = ( $elem[ $i ] ?? null ); $this->write_setting( $key . '[]', $elem_check ); } } else { $this->write_setting( $key, $elem ); } } } /** * Writes a settings line to the export. * * @param string $key Key string. * @param string $val Value string. * * @return void */ private function write_setting( $key, $val ) { if ( is_string( $val ) ) { $val = '"' . $val . '"'; } $this->write_line( $key . ' = ' . $val ); } }
Upload File
Create Folder