ACIL FM
Dark
Refresh
Current DIR:
/home/mhhtmff/www/site/wp-content/plugins/wordpress-seo/admin/views
/
home
mhhtmff
www
site
wp-content
plugins
wordpress-seo
admin
views
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
form
-
chmod
Open
Rename
Delete
tabs
-
chmod
Open
Rename
Delete
class-yoast-feature-toggle.php
4.53 MB
chmod
View
DL
Edit
Rename
Delete
class-yoast-feature-toggles.php
12.31 MB
chmod
View
DL
Edit
Rename
Delete
class-yoast-input-select.php
2.85 MB
chmod
View
DL
Edit
Rename
Delete
class-yoast-integration-toggles.php
4.38 MB
chmod
View
DL
Edit
Rename
Delete
interface-yoast-form-element.php
251 B
chmod
View
DL
Edit
Rename
Delete
js-templates-primary-term.php
1.33 MB
chmod
View
DL
Edit
Rename
Delete
licenses.php
19.93 MB
chmod
View
DL
Edit
Rename
Delete
paper-collapsible.php
3.02 MB
chmod
View
DL
Edit
Rename
Delete
partial-notifications-errors.php
1.11 MB
chmod
View
DL
Edit
Rename
Delete
partial-notifications-template.php
3.9 MB
chmod
View
DL
Edit
Rename
Delete
partial-notifications-warnings.php
1.06 MB
chmod
View
DL
Edit
Rename
Delete
redirects.php
8.45 MB
chmod
View
DL
Edit
Rename
Delete
tool-bulk-editor.php
3.11 MB
chmod
View
DL
Edit
Rename
Delete
tool-file-editor.php
6.73 MB
chmod
View
DL
Edit
Rename
Delete
tool-import-export.php
4.15 MB
chmod
View
DL
Edit
Rename
Delete
user-profile.php
4.21 MB
chmod
View
DL
Edit
Rename
Delete
Edit file: /home/mhhtmff/www/site/wp-content/plugins/wordpress-seo/admin/views/class-yoast-input-select.php
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin */ /** * Class for generating a html select. */ class Yoast_Input_Select { /** * The id attribute value. * * @var string */ private $select_id; /** * The name attribute value. * * @var string */ private $select_name; /** * Additional select attributes. * * @var array */ private $select_attributes = []; /** * Array with the options to parse. * * @var array */ private $select_options; /** * The current selected option. * * @var string */ private $selected_option; /** * Constructor. * * @param string $select_id ID for the select. * @param string $select_name Name for the select. * @param array $select_options Array with the options to parse. * @param string $selected_option The current selected option. */ public function __construct( $select_id, $select_name, array $select_options, $selected_option ) { $this->select_id = $select_id; $this->select_name = $select_name; $this->select_options = $select_options; $this->selected_option = $selected_option; } /** * Print the rendered view. */ public function output_html() { // Extract it, because we want each value accessible via a variable instead of accessing it as an array. extract( $this->get_select_values() ); require WPSEO_PATH . 'admin/views/form/select.php'; } /** * Return the rendered view. * * @return string */ public function get_html() { ob_start(); $this->output_html(); $rendered_output = ob_get_contents(); ob_end_clean(); return $rendered_output; } /** * Add an attribute to the attributes property. * * @param string $attribute The name of the attribute to add. * @param string $value The value of the attribute. */ public function add_attribute( $attribute, $value ) { $this->select_attributes[ $attribute ] = $value; } /** * Return the set fields for the select. * * @return array */ private function get_select_values() { return [ 'id' => $this->select_id, 'name' => $this->select_name, 'attributes' => $this->get_attributes(), 'options' => $this->select_options, 'selected' => $this->selected_option, ]; } /** * Return the attribute string, when there are attributes set. * * @return string */ private function get_attributes() { $attributes = $this->select_attributes; if ( ! empty( $attributes ) ) { array_walk( $attributes, [ $this, 'parse_attribute' ] ); return implode( ' ', $attributes ) . ' '; } return ''; } /** * Get an attribute from the attributes. * * @param string $value The value of the attribute. * @param string $attribute The attribute to look for. */ private function parse_attribute( &$value, $attribute ) { $value = sprintf( '%s="%s"', sanitize_key( $attribute ), esc_attr( $value ) ); } }
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply