__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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.
*
* @return void
*/
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.
*
* @return void
*/
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.
*
* @return void
*/
private function parse_attribute( &$value, $attribute ) {
$value = sprintf( '%s="%s"', sanitize_key( $attribute ), esc_attr( $value ) );
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| form | Folder | 0775 |
|
|
| tabs | Folder | 0775 |
|
|
| class-yoast-feature-toggle.php | File | 4.53 KB | 0775 |
|
| class-yoast-feature-toggles.php | File | 12.3 KB | 0775 |
|
| class-yoast-input-select.php | File | 2.91 KB | 0775 |
|
| class-yoast-integration-toggles.php | File | 4.38 KB | 0775 |
|
| interface-yoast-form-element.php | File | 251 B | 0775 |
|
| js-templates-primary-term.php | File | 1.33 KB | 0775 |
|
| licenses.php | File | 17.93 KB | 0775 |
|
| paper-collapsible.php | File | 3.02 KB | 0775 |
|
| partial-notifications-errors.php | File | 1.13 KB | 0775 |
|
| partial-notifications-template.php | File | 3.9 KB | 0775 |
|
| partial-notifications-warnings.php | File | 1.06 KB | 0775 |
|
| redirects.php | File | 8.45 KB | 0775 |
|
| tool-bulk-editor.php | File | 3.13 KB | 0775 |
|
| tool-file-editor.php | File | 6.73 KB | 0775 |
|
| tool-import-export.php | File | 4.2 KB | 0775 |
|
| user-profile.php | File | 4.25 KB | 0775 |
|