wp_ajax_update_theme()
- Since
- 4.6.0
- Source
wp-admin/includes/ajax-actions.php:4280
Compatibility
- WordPress
- since 4.6.0
- PHP
- 7.4–8.6-dev
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.
Performance profile
How much work a call to wp_ajax_update_theme() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.
- Cost class
- Expensive
- Scaling
- Constant
- Instructions
- 78–141
- Plugin surface
- None
- Called by
- 0
Reaches an outbound HTTP request via wp_remote_post().
No loop in the body: the same number of instructions runs whatever you pass in.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 189.
Nothing here hands control to plugin code.
Nothing in core calls this; the cost is only what you spend yourself.
What it touches
- transienttransient
get_site_transient()called directly - hookthird-party callbacks
do_action()one call below wp_ajax_update_theme() - cacheobject cache
wp_cache_get()one call below wp_ajax_update_theme() - optionnetwork option
get_site_option()one call below wp_ajax_update_theme() - httpoutbound HTTP request
wp_remote_post()one call below wp_ajax_update_theme()
Further down the call graph this can also reach serialize and query. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.
What one call costs · 352 distinct outcomes
One number would be a lie: the work depends on which branch runs. These are every distinct cost wp_ajax_update_theme() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
!empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 78–82 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 80–84 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && ->has_errors() | 82–84 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && is_wp_error() | 83–85 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 83–87 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 84–86 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && ->has_errors() | 84–86 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && is_wp_error() | 85–87 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 85–89 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 86–88 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 86–90 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 87–91 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
340 further outcomes, up to 141 instructions
!empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && ->has_errors() | 87–89 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && is_wp_error() | 88–90 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 88 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 88–92 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && is_wp_error() | 89 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 89–91 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 89–93 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && ->has_errors() | 89–91 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && is_wp_error() | 90–92 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 90 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && ->has_errors() | 90–92 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 91–95 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && is_wp_error() | 91 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 91–93 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && is_wp_error() | 91–93 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 91–95 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && ->has_errors() | 91–93 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 92–94 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 92–94 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && is_wp_error() | 92–94 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 92–96 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && ->has_errors() | 92–94 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 93–97 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 93–95 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 93 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && is_wp_error() | 93–95 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 93–97 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && ->has_errors() | 93–95 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && is_wp_error() | 94 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 94–96 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 94–96 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && is_wp_error() | 94–96 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 94–98 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 95–97 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 95–99 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 95 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && ->has_errors() | 95–97 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 96–100 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && is_wp_error() | 96 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && is_wp_error() | 96–98 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 96 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && ->has_errors() | 96–98 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 97–101 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 97–99 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 97–99 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 97–99 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && is_wp_error() | 97 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 97–99 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && is_wp_error() | 97–99 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 97 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 97–101 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && ->has_errors() | 97–99 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 98 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 98–102 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && is_wp_error() | 98 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 98–100 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && is_wp_error() | 98–100 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 98 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && ->has_errors() | 98–100 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 99–101 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 99–103 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 99–101 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 99–103 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 99–101 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 99–101 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && is_wp_error() | 99 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 99–101 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && is_wp_error() | 99–101 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 99 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && ->has_errors() | 99–101 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 100–104 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 100 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 100–102 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && is_wp_error() | 100 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 100–102 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && is_wp_error() | 100–102 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 100–104 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 101–105 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 101–103 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 101–105 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 101–103 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 101–103 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 101 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && ->has_errors() | 101–103 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 102–106 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 102–104 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 102–104 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && is_wp_error() | 102 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 102–106 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 102–104 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 102 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && is_wp_error() | 102–104 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result !== false | 102–106 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 103–105 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 103 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 103–107 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 103 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && is_wp_error() | 103 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 103–105 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 103–105 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 103 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 104–106 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 104–106 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 104–108 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 104–106 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 104–108 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 104–106 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && is_wp_error() | 104 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 104 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && ->has_errors() | 104–106 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 105 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 105–107 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 105–109 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 105–107 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 105–109 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 105 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 105 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 105–107 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 105–107 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && is_wp_error() | 105 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && is_wp_error() | 105–107 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 105 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 106–110 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 106–110 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 106–108 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 106–108 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 106–108 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 106 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 106–110 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 106–108 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 106–108 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && is_wp_error() | 106 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 106–108 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && ->has_errors() | 106–108 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 107–109 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 107 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 107–109 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 107–111 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 107–109 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 107 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 107–111 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 107–109 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 107–109 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && is_wp_error() | 107–109 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 107 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 108–110 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 108 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 108–112 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 108–110 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 108–112 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 108–110 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 108–112 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 108 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 108–110 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 108–110 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && is_wp_error() | 108 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result !== false | 108–110 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && $result === false && $wp_filesystem instanceof | 109–113 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 109–111 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 109–111 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 109–113 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 109–111 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 109 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 109–111 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 110 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 110 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 110–112 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 110–114 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 110–112 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 110–114 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 110 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 110–112 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 110–112 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 110–114 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 110 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 111–113 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 111–115 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 111–113 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && $result === false && $wp_filesystem instanceof | 111–115 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 111–113 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 111 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 111–115 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 111 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 111–113 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && is_wp_error() | 111 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 111–113 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 112–114 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 112–114 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 112 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 112 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 112–114 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 112–114 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 112–116 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 112–114 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 112 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 112–116 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 112 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 112–114 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && ->has_errors() | 112 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), ->get_error_messages(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 113 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 113–115 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 113–115 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 113–115 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 113–117 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 113–115 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 113–117 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 113 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 113 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 113–115 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && is_wp_error() | 113 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_error_code(), ->get_error_message(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && $result === false && $wp_filesystem instanceof | 114–118 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 114–116 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 114–118 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 114 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 114–116 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 114–118 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 114–116 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 114–116 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 114–116 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 114 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 114 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 114–116 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 114–116 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 115–117 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 115 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 115–117 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 115–119 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 115 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 115–117 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 115–117 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 115 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 115–119 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 116–118 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 116–118 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && $result === false && $wp_filesystem instanceof | 116–120 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 116 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 116–120 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 116 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 116–118 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 116–120 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 116–118 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 116–118 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 116–118 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 117–119 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 117–119 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 117 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && $result === false && $wp_filesystem instanceof | 117–121 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 117–119 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 117–119 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 117 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 117–121 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 117 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 118 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 118 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 118–120 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && $result === false && $wp_filesystem instanceof | 118–122 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 118–120 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 118–120 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 118–122 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 118 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 118–120 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 119 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 119 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 119–121 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 119–123 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 119–121 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && $result === false && $wp_filesystem instanceof | 119–123 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 119–121 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 119 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 119–121 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 120–122 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 120–122 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 120–122 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 120 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 120 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && $result === false && $wp_filesystem instanceof | 120–124 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 120–122 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 120 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 120–124 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 120 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 121–123 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 121 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 121 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 121–123 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 121–123 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 121–125 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && !($wp_filesystem instanceof) | 121–123 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 121–123 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 122–124 | check_ajax_referer(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && $result === false && $wp_filesystem instanceof | 122–126 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 122–124 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 122 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 122–124 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 122 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 122 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 123–125 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 123 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && $result === false && $wp_filesystem instanceof | 123–127 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 123–125 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 123–127 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 123–125 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 123–125 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 124–126 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 124 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 124–126 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && $result === false && $wp_filesystem instanceof | 124–128 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 124 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 125–127 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 125–127 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 125 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && $result === false && $wp_filesystem instanceof | 125–129 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 125 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && !->has_errors() && $result === false && $wp_filesystem instanceof | 125–129 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 126–128 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 126 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && $result === false && $wp_filesystem instanceof | 126–130 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 126–128 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 126–128 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 127 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 127 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && $result === false && $wp_filesystem instanceof | 127–129 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 127 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 128–130 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && $result === false && $wp_filesystem instanceof | 128–132 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 128–130 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 129–131 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 129–131 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 129 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 129 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), wp_send_json_success(), __(), wp_send_json_error() |
!empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 130–132 | check_ajax_referer(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 131–133 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && $result === false && $wp_filesystem instanceof | 131–135 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !->has_errors() && $result === false && $wp_filesystem instanceof | 131–133 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && !empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 132–134 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 132 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && $result === false && $wp_filesystem instanceof | 133–137 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && !->exists() && empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 134–136 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && !is_wp_error() && !->has_errors() && is_array($result) && !empty($result[$stylesheet]) | 134 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), wp_send_json_success(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && !empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 137–139 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
empty($value) && !current_user_can() && ->exists() && empty($current) && defined('WP_DEBUG') && $result === false && $wp_filesystem instanceof | 139–141 | check_ajax_referer(), __(), slug(), wp_unslash(), current_user_can(), __(), wp_send_json_error(), wp_get_theme(), ->exists(), ->get(), get_site_transient(), wp_update_themes(), theme(), wp_send_json_error(), ->get_upgrade_messages(), is_wp_error(), ->get_errors(), ->has_errors(), __(), is_wp_error(), ->has_errors(), ->get_error_message(), esc_html(), wp_send_json_error(), __(), wp_send_json_error() |
Across PHP versions
| PHP | Compiled | Executed | Branches | Notes |
|---|---|---|---|---|
| 8.6-dev | 189 | 78–141 | 16 | |
| 8.5 | 189 | 78–141 | 16 | |
| 8.4 | 189 | 78–141 | 16 | 3 fewer instructions than PHP 8.3 |
| 8.3 | 192 | 81–144 | 16 | |
| 8.2 | 192 | 81–144 | 16 | |
| 8.1 | 192 | 81–144 | 16 | |
| 7.4 | 192 | 81–144 | 16 |
An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.
Uses · 13
- check_ajax_referer()Verifies the Ajax request to prevent processing requests external of the blog.
- wp_send_json_error()Sends a JSON response back to an Ajax request, indicating failure.
- __()Retrieves the translation of $text.
- wp_unslash()Removes slashes from a string or recursively removes slashes from strings within an array.
- current_user_can()Returns whether the current user has the specified capability.
- wp_get_theme()Gets a WP_Theme object for a theme.
- get_site_transient()Retrieves the value of a site transient.
- wp_update_themes()Checks for available updates to themes based on the latest versions hosted on WordPress.org.
- is_wp_error()Checks whether the given variable is a WordPress Error.
- wp_send_json_success()Sends a JSON response back to an Ajax request, indicating success.
- esc_html()Escaping for HTML blocks.
- WP_Ajax_Upgrader_Skin::__construct()Constructor.
Show all 13
- Theme_Upgrader::__construct()
Source code
function wp_ajax_update_theme() { check_ajax_referer( 'updates' ); if ( empty( $_POST['slug'] ) ) { wp_send_json_error( array( 'slug' => '', 'errorCode' => 'no_theme_specified', 'errorMessage' => __( 'No theme specified.' ), ) ); } $stylesheet = preg_replace( '/[^A-z0-9_\-]/', '', wp_unslash( $_POST['slug'] ) ); $status = array( 'update' => 'theme', 'slug' => $stylesheet, 'oldVersion' => '', 'newVersion' => '', ); if ( ! current_user_can( 'update_themes' ) ) { $status['errorMessage'] = __( 'Sorry, you are not allowed to update themes for this site.' ); wp_send_json_error( $status ); } $theme = wp_get_theme( $stylesheet ); if ( $theme->exists() ) { $status['oldVersion'] = $theme->get( 'Version' ); } require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; $current = get_site_transient( 'update_themes' ); if ( empty( $current ) ) { wp_update_themes(); } $skin = new WP_Ajax_Upgrader_Skin(); $upgrader = new Theme_Upgrader( $skin ); $result = $upgrader->bulk_upgrade( array( $stylesheet ) ); if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { $status['debug'] = $skin->get_upgrade_messages(); } if ( is_wp_error( $skin->result ) ) { $status['errorCode'] = $skin->result->get_error_code(); $status['errorMessage'] = $skin->result->get_error_message(); wp_send_json_error( $status ); } elseif ( $skin->get_errors()->has_errors() ) { $status['errorMessage'] = $skin->get_error_messages(); wp_send_json_error( $status ); } elseif ( is_array( $result ) && ! empty( $result[ $stylesheet ] ) ) { // Theme is already at the latest version. if ( true === $result[ $stylesheet ] ) { $status['errorMessage'] = $upgrader->strings['up_to_date']; wp_send_json_error( $status ); } $theme = wp_get_theme( $stylesheet ); if ( $theme->exists() ) { $status['newVersion'] = $theme->get( 'Version' ); } wp_send_json_success( $status ); } elseif ( false === $result ) { global $wp_filesystem; $status['errorCode'] = 'unable_to_connect_to_filesystem'; $status['errorMessage'] = __( 'Unable to connect to the filesystem. Please confirm your credentials.' ); // Pass through the error from WP_Filesystem if one was raised. if ( $wp_filesystem instanceof WP_Filesystem_Base && is_wp_error( $wp_filesystem->errors ) && $wp_filesystem->errors->has_errors() ) { $status['errorMessage'] = esc_html( $wp_filesystem->errors->get_error_message() ); } wp_send_json_error( $status ); }Changelog
Introduced in 4.6.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.8.8 tag, from
src/wp-admin/includes/ajax-actions.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.