/
home
/
altere25
/
sportzsoftlivemeet.com
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
/home/altere25/sportzsoftlivemeet.com/wp-content/plugins/wordpress-seo/admin
mkdir
upload
Name
Size
Mode
Actions
ajax/
-
0755
rm
capabilities/
-
0755
rm
config-ui/
-
0755
rm
endpoints/
-
0755
rm
exceptions/
-
0755
rm
filters/
-
0755
rm
formatter/
-
0755
rm
google_search_console/
-
0755
rm
import/
-
0755
rm
listeners/
-
0755
rm
menu/
-
0755
rm
metabox/
-
0755
rm
notifiers/
-
0755
rm
pages/
-
0755
rm
roles/
-
0755
rm
ryte/
-
0755
rm
services/
-
0755
rm
statistics/
-
0755
rm
taxonomy/
-
0755
rm
tracking/
-
0755
rm
views/
-
0755
rm
watchers/
-
0755
rm
admin-settings-changed-listener.php
2350
0644
edit
dl
rm
ajax.php
9688
0644
edit
dl
rm
class-add-keyword-modal.php
2245
0644
edit
dl
rm
class-admin-asset-analysis-worker-location.php
1866
0644
edit
dl
rm
class-admin-asset-dev-server-location.php
1997
0644
edit
dl
rm
class-admin-asset-location.php
488
0644
edit
dl
rm
class-admin-asset-manager.php
21416
0644
edit
dl
rm
class-admin-asset-seo-location.php
1839
0644
edit
dl
rm
class-admin-asset-yoast-components-l10n.php
1338
0644
edit
dl
rm
class-admin-editor-specific-replace-vars.php
6480
0644
edit
dl
rm
class-admin-gutenberg-compatibility-notification.php
2277
0644
edit
dl
rm
class-admin-help-panel.php
2760
0644
edit
dl
rm
class-admin-init.php
21427
0644
edit
dl
rm
class-admin-media-purge-notification.php
3300
0644
edit
dl
rm
class-admin-recommended-replace-vars.php
6126
0644
edit
dl
rm
class-admin-user-profile.php
2740
0644
edit
dl
rm
class-admin-utils.php
2147
0644
edit
dl
rm
class-admin.php
13125
0644
edit
dl
rm
class-asset.php
4017
0644
edit
dl
rm
class-bulk-description-editor-list-table.php
2100
0644
edit
dl
rm
class-bulk-editor-list-table.php
28426
0644
edit
dl
rm
class-bulk-title-editor-list-table.php
2286
0644
edit
dl
rm
class-collector.php
984
0644
edit
dl
rm
class-config.php
5583
0644
edit
dl
rm
class-customizer.php
6310
0644
edit
dl
rm
class-database-proxy.php
7424
0644
edit
dl
rm
class-export.php
3974
0644
edit
dl
rm
class-expose-shortlinks.php
4996
0644
edit
dl
rm
class-gutenberg-compatibility.php
2508
0644
edit
dl
rm
class-helpscout.php
6949
0644
edit
dl
rm
class-keyword-synonyms-modal.php
2306
0644
edit
dl
rm
class-meta-columns.php
23081
0644
edit
dl
rm
class-multiple-keywords-modal.php
2309
0644
edit
dl
rm
class-my-yoast-proxy.php
5373
0644
edit
dl
rm
class-option-tab.php
1784
0644
edit
dl
rm
class-option-tabs-formatter.php
2321
0644
edit
dl
rm
class-option-tabs.php
2097
0644
edit
dl
rm
class-paper-presenter.php
3584
0644
edit
dl
rm
class-plugin-availability.php
8461
0644
edit
dl
rm
class-plugin-compatibility.php
3657
0644
edit
dl
rm
class-plugin-conflict.php
8566
0644
edit
dl
rm
class-premium-popup.php
2821
0644
edit
dl
rm
class-premium-upsell-admin-block.php
3545
0644
edit
dl
rm
class-primary-term-admin.php
8646
0644
edit
dl
rm
class-product-upsell-notice.php
5217
0644
edit
dl
rm
class-remote-request.php
3168
0644
edit
dl
rm
class-schema-person-upgrade-notification.php
2133
0644
edit
dl
rm
class-suggested-plugins.php
5584
0644
edit
dl
rm
class-wincher-dashboard-widget.php
3615
0644
edit
dl
rm
class-yoast-columns.php
3281
0644
edit
dl
rm
class-yoast-dashboard-widget.php
4086
0644
edit
dl
rm
class-yoast-form.php
25174
0644
edit
dl
rm
class-yoast-input-validation.php
10868
0644
edit
dl
rm
class-yoast-network-admin.php
9725
0644
edit
dl
rm
class-yoast-network-settings-api.php
4240
0644
edit
dl
rm
class-yoast-notification-center.php
23637
0644
edit
dl
rm
class-yoast-notification.php
9715
0644
edit
dl
rm
class-yoast-notifications.php
8784
0644
edit
dl
rm
class-yoast-plugin-conflict.php
10002
0644
edit
dl
rm
index.php
38
0644
edit
dl
rm
interface-collection.php
257
0644
edit
dl
rm
interface-installable.php
254
0644
edit
dl
rm
Edit:
/home/altere25/sportzsoftlivemeet.com/wp-content/plugins/wordpress-seo/admin/class-asset.php
(4017B)
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin */ /** * Represents a WPSEO asset */ class WPSEO_Admin_Asset { /** * Constant used to identify file type as a JS file. * * @var string */ const TYPE_JS = 'js'; /** * Constant used to identify file type as a CSS file. * * @var string */ const TYPE_CSS = 'css'; /** * The name option identifier. * * @var string */ const NAME = 'name'; /** * The source option identifier. * * @var string */ const SRC = 'src'; /** * The dependencies option identifier. * * @var string */ const DEPS = 'deps'; /** * The version option identifier. * * @var string */ const VERSION = 'version'; /* Style specific. */ /** * The media option identifier. * * @var string */ const MEDIA = 'media'; /** * The rtl option identifier. * * @var string */ const RTL = 'rtl'; /* Script specific. */ /** * The "in footer" option identifier. * * @var string */ const IN_FOOTER = 'in_footer'; /** * Asset identifier. * * @var string */ protected $name; /** * Path to the asset. * * @var string */ protected $src; /** * Asset dependencies. * * @var string|array */ protected $deps; /** * Asset version. * * @var string */ protected $version; /** * For CSS Assets. The type of media for which this stylesheet has been defined. * * See https://www.w3.org/TR/CSS2/media.html#media-types. * * @var string */ protected $media; /** * For JS Assets. Whether or not the script should be loaded in the footer. * * @var bool */ protected $in_footer; /** * For CSS Assets. Whether this stylesheet is a right-to-left stylesheet. * * @var bool */ protected $rtl; /** * File suffix. * * @var string */ protected $suffix; /** * Default asset arguments. * * @var array */ private $defaults = [ 'deps' => [], 'in_footer' => true, 'rtl' => true, 'media' => 'all', 'version' => '', 'suffix' => '', ]; /** * Constructs an instance of the WPSEO_Admin_Asset class. * * @param array $args The arguments for this asset. * * @throws InvalidArgumentException Throws when no name or src has been provided. */ public function __construct( array $args ) { if ( ! isset( $args['name'] ) ) { throw new InvalidArgumentException( 'name is a required argument' ); } if ( ! isset( $args['src'] ) ) { throw new InvalidArgumentException( 'src is a required argument' ); } $args = array_merge( $this->defaults, $args ); $this->name = $args['name']; $this->src = $args['src']; $this->deps = $args['deps']; $this->version = $args['version']; $this->media = $args['media']; $this->in_footer = $args['in_footer']; $this->rtl = $args['rtl']; $this->suffix = $args['suffix']; } /** * Returns the asset identifier. * * @return string */ public function get_name() { return $this->name; } /** * Returns the path to the asset. * * @return string */ public function get_src() { return $this->src; } /** * Returns the asset dependencies. * * @return array|string */ public function get_deps() { return $this->deps; } /** * Returns the asset version. * * @return string */ public function get_version() { if ( ! empty( $this->version ) ) { return $this->version; } return null; } /** * Returns the media type for CSS assets. * * @return string */ public function get_media() { return $this->media; } /** * Returns whether a script asset should be loaded in the footer of the page. * * @return boolean */ public function is_in_footer() { return $this->in_footer; } /** * Returns whether this CSS has a RTL counterpart. * * @return boolean */ public function has_rtl() { return $this->rtl; } /** * Returns the file suffix. * * @return string */ public function get_suffix() { return $this->suffix; } }
Save
cmd:
run