Submit
Path:
~
/
home
/
caidadmin
/
dev.scribes.sca-caid.org.old
/
wp-admin
/
includes
/
File Content:
class-theme-installer-skin.php
<?php /** * Upgrader API: Theme_Installer_Skin class * * @package WordPress * @subpackage Upgrader * @since 4.6.0 */ /** * Theme Installer Skin for the WordPress Theme Installer. * * @since 2.8.0 * @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php. * * @see WP_Upgrader_Skin */ class Theme_Installer_Skin extends WP_Upgrader_Skin { public $api; public $type; /** * @param array $args */ public function __construct( $args = array() ) { $defaults = array( 'type' => 'web', 'url' => '', 'theme' => '', 'nonce' => '', 'title' => '', ); $args = wp_parse_args( $args, $defaults ); $this->type = $args['type']; $this->api = isset( $args['api'] ) ? $args['api'] : array(); parent::__construct( $args ); } /** */ public function before() { if ( ! empty( $this->api ) ) { $this->upgrader->strings['process_success'] = sprintf( $this->upgrader->strings['process_success_specific'], $this->api->name, $this->api->version ); } } /** */ public function after() { if ( empty( $this->upgrader->result['destination_name'] ) ) { return; } $theme_info = $this->upgrader->theme_info(); if ( empty( $theme_info ) ) { return; } $name = $theme_info->display( 'Name' ); $stylesheet = $this->upgrader->result['destination_name']; $template = $theme_info->get_template(); $activate_link = add_query_arg( array( 'action' => 'activate', 'template' => urlencode( $template ), 'stylesheet' => urlencode( $stylesheet ), ), admin_url( 'themes.php' ) ); $activate_link = wp_nonce_url( $activate_link, 'switch-theme_' . $stylesheet ); $install_actions = array(); if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) { $customize_url = add_query_arg( array( 'theme' => urlencode( $stylesheet ), 'return' => urlencode( admin_url( 'web' === $this->type ? 'theme-install.php' : 'themes.php' ) ), ), admin_url( 'customize.php' ) ); $install_actions['preview'] = sprintf( '<a href="%s" class="hide-if-no-customize load-customize">' . '<span aria-hidden="true">%s</span><span class="screen-reader-text">%s</span></a>', esc_url( $customize_url ), __( 'Live Preview' ), /* translators: %s: Theme name. */ sprintf( __( 'Live Preview “%s”' ), $name ) ); } $install_actions['activate'] = sprintf( '<a href="%s" class="activatelink">' . '<span aria-hidden="true">%s</span><span class="screen-reader-text">%s</span></a>', esc_url( $activate_link ), __( 'Activate' ), /* translators: %s: Theme name. */ sprintf( __( 'Activate “%s”' ), $name ) ); if ( is_network_admin() && current_user_can( 'manage_network_themes' ) ) { $install_actions['network_enable'] = sprintf( '<a href="%s" target="_parent">%s</a>', esc_url( wp_nonce_url( 'themes.php?action=enable&theme=' . urlencode( $stylesheet ), 'enable-theme_' . $stylesheet ) ), __( 'Network Enable' ) ); } if ( 'web' === $this->type ) { $install_actions['themes_page'] = sprintf( '<a href="%s" target="_parent">%s</a>', self_admin_url( 'theme-install.php' ), __( 'Return to Theme Installer' ) ); } elseif ( current_user_can( 'switch_themes' ) || current_user_can( 'edit_theme_options' ) ) { $install_actions['themes_page'] = sprintf( '<a href="%s" target="_parent">%s</a>', self_admin_url( 'themes.php' ), __( 'Return to Themes page' ) ); } if ( ! $this->result || is_wp_error( $this->result ) || is_network_admin() || ! current_user_can( 'switch_themes' ) ) { unset( $install_actions['activate'], $install_actions['preview'] ); } /** * Filters the list of action links available following a single theme installation. * * @since 2.8.0 * * @param string[] $install_actions Array of theme action links. * @param object $api Object containing WordPress.org API theme data. * @param string $stylesheet Theme directory name. * @param WP_Theme $theme_info Theme object. */ $install_actions = apply_filters( 'install_theme_complete_actions', $install_actions, $this->api, $stylesheet, $theme_info ); if ( ! empty( $install_actions ) ) { $this->feedback( implode( ' | ', (array) $install_actions ) ); } } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
admin-filters.php
6539 bytes
0644
admin.php
3556 bytes
0644
ajax-actions.php
140515 bytes
0644
bookmark.php
9540 bytes
0644
class-automatic-upgrader-skin.php
3229 bytes
0644
class-bulk-plugin-upgrader-skin.php
2073 bytes
0644
class-bulk-theme-upgrader-skin.php
2107 bytes
0644
class-bulk-upgrader-skin.php
5309 bytes
0644
class-core-upgrader.php
14599 bytes
0644
class-custom-background.php
20739 bytes
0644
class-custom-image-header.php
47885 bytes
0644
class-file-upload-upgrader.php
3384 bytes
0644
class-ftp-pure.php
5426 bytes
0644
class-ftp-sockets.php
8475 bytes
0644
class-ftp.php
27128 bytes
0644
class-language-pack-upgrader-skin.php
2384 bytes
0644
class-language-pack-upgrader.php
14741 bytes
0644
class-pclzip.php
196026 bytes
0644
class-plugin-installer-skin.php
4624 bytes
0644
class-plugin-upgrader-skin.php
2731 bytes
0644
class-plugin-upgrader.php
17655 bytes
0644
class-theme-installer-skin.php
4386 bytes
0644
class-theme-upgrader-skin.php
3702 bytes
0644
class-theme-upgrader.php
20587 bytes
0644
class-walker-category-checklist.php
4260 bytes
0644
class-walker-nav-menu-checklist.php
5088 bytes
0644
class-walker-nav-menu-edit.php
12267 bytes
0644
class-wp-ajax-upgrader-skin.php
3258 bytes
0644
class-wp-automatic-updater.php
36197 bytes
0644
class-wp-comments-list-table.php
28381 bytes
0644
class-wp-community-events.php
17817 bytes
0644
class-wp-debug-data.php
47017 bytes
0644
class-wp-filesystem-base.php
23114 bytes
0644
class-wp-filesystem-direct.php
16459 bytes
0644
class-wp-filesystem-ftpext.php
19986 bytes
0644
class-wp-filesystem-ftpsockets.php
16770 bytes
0644
class-wp-filesystem-ssh2.php
22068 bytes
0644
class-wp-importer.php
7546 bytes
0644
class-wp-internal-pointers.php
4539 bytes
0644
class-wp-links-list-table.php
7916 bytes
0644
class-wp-list-table-compat.php
1071 bytes
0644
class-wp-list-table.php
38728 bytes
0644
class-wp-media-list-table.php
23038 bytes
0644
class-wp-ms-sites-list-table.php
20362 bytes
0644
class-wp-ms-themes-list-table.php
21064 bytes
0644
class-wp-ms-users-list-table.php
14073 bytes
0644
class-wp-plugin-install-list-table.php
23178 bytes
0644
class-wp-plugins-list-table.php
35918 bytes
0644
class-wp-post-comments-list-table.php
1472 bytes
0644
class-wp-posts-list-table.php
58141 bytes
0644
class-wp-privacy-data-export-requests-list-table.php
4690 bytes
0644
class-wp-privacy-data-removal-requests-list-table.php
4858 bytes
0644
class-wp-privacy-policy-content.php
33206 bytes
0644
class-wp-privacy-requests-table.php
11362 bytes
0644
class-wp-screen.php
36640 bytes
0644
class-wp-site-health-auto-updates.php
13518 bytes
0644
class-wp-site-health.php
71618 bytes
0644
class-wp-site-icon.php
6159 bytes
0644
class-wp-terms-list-table.php
18978 bytes
0644
class-wp-theme-install-list-table.php
15373 bytes
0644
class-wp-themes-list-table.php
10168 bytes
0644
class-wp-upgrader-skin.php
5219 bytes
0644
class-wp-upgrader-skins.php
1477 bytes
0644
class-wp-upgrader.php
35737 bytes
0644
class-wp-users-list-table.php
17765 bytes
0644
comment.php
5885 bytes
0644
continents-cities.php
20750 bytes
0644
credits.php
5549 bytes
0644
dashboard.php
64557 bytes
0644
deprecated.php
40705 bytes
0644
edit-tag-messages.php
1437 bytes
0644
export.php
23610 bytes
0644
file.php
80752 bytes
0644
image-edit.php
35782 bytes
0644
image.php
34245 bytes
0644
import.php
6640 bytes
0644
list-table.php
3226 bytes
0644
media.php
113891 bytes
0644
menu.php
9149 bytes
0644
meta-boxes.php
62853 bytes
0644
misc.php
42172 bytes
0644
ms-admin-filters.php
1376 bytes
0644
ms-deprecated.php
3031 bytes
0644
ms.php
33707 bytes
0644
nav-menu.php
46646 bytes
0644
network.php
24462 bytes
0644
noop.php
1086 bytes
0644
options.php
4108 bytes
0644
plugin-install.php
34454 bytes
0644
plugin.php
84417 bytes
0644
post.php
75425 bytes
0644
privacy-tools.php
31491 bytes
0644
revision.php
15922 bytes
0644
schema.php
41762 bytes
0644
screen.php
6371 bytes
0644
taxonomy.php
7962 bytes
0644
template.php
90554 bytes
0644
theme-install.php
6568 bytes
0644
theme.php
34163 bytes
0644
translation-install.php
8773 bytes
0644
update-core.php
59356 bytes
0644
update.php
29091 bytes
0644
upgrade.php
104564 bytes
0644
user.php
18231 bytes
0644
widgets.php
10795 bytes
0644
N4ST4R_ID | Naxtarrr