| Server IP : 27.254.66.5 / Your IP : 216.73.217.39 Web Server : Apache/2 System : Linux cs82.hostneverdie.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64 User : technic2 ( 1951) PHP Version : 7.4.30 Disable Function : apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd,exec, fp, fput, highlight_file, ini_alter, ini_restore, inject_code, passthru,phpAds_remoteInfo, phpAds_XmlRpc,phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid,posix_setuid, posix_setuid, posix_uname,proc_open,proc_close, proc_get_status, proc_nice, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode, show_source,sleep,pcntl_exec,virtual,suexec,dbmopen,dl,symlink,disk_free_space,diskfreespace,leak MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/technic2/public_html/old-website/wp-content/plugins/polylang/include/ |
Upload File : |
<?php
/**
* Displays languages in a dropdown list
*
* @since 1.2
*/
class PLL_Walker_Dropdown extends Walker {
var $db_fields = array( 'parent' => 'parent', 'id' => 'id' );
/**
* Outputs one element
*
* @since 1.2
*
* @param string $output Passed by reference. Used to append additional content.
* @param object $element The data object.
* @param int $depth Depth of the item.
* @param array $args An array of additional arguments.
* @param int $current_object_id ID of the current item.
*/
function start_el( &$output, $element, $depth = 0, $args = array(), $current_object_id = 0 ) {
$value = $args['value'];
$output .= sprintf(
"\t" . '<option value="%1$s"%2$s%3$s>%4$s</option>' . "\n",
esc_attr( $element->$value ),
method_exists( $element, 'get_locale' ) ? sprintf( ' lang="%s"', esc_attr( $element->get_locale( 'display' ) ) ) : '',
isset( $args['selected'] ) && $args['selected'] === $element->$value ? ' selected="selected"' : '',
esc_html( $element->name )
);
}
/**
* Overrides Walker::display_element as expects an object with a parent property
*
* @since 1.2
*
* @param object $element Data object.
* @param array $children_elements List of elements to continue traversing.
* @param int $max_depth Max depth to traverse.
* @param int $depth Depth of current element.
* @param array $args An array of arguments.
* @param string $output Passed by reference. Used to append additional content.
*/
function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) {
$element = (object) $element; // Make sure we have an object
$element->parent = $element->id = 0; // Don't care about this
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
}
/**
* Starts the output of the dropdown list
*
* @since 1.2
*
* List of parameters accepted in $args:
*
* flag => display the selected language flag in front of the dropdown if set to 1, defaults to 0
* value => the language field to use as value attribute, defaults to 'slug'
* selected => the selected value, mandatory
* name => the select name attribute, defaults to 'lang_choice'
* id => the select id attribute, defaults to $args['name']
* class => the class attribute
* disabled => disables the dropdown if set to 1
*
* @param array $elements elements to display
* @param array $args
* @return string
*/
function walk( $elements, $args = array() ) {
$output = '';
$args = wp_parse_args( $args, array( 'value' => 'slug', 'name' => 'lang_choice' ) );
if ( ! empty( $args['flag'] ) ) {
$current = wp_list_filter( $elements, array( $args['value'] => $args['selected'] ) );
$lang = reset( $current );
$output = sprintf(
'<span class="pll-select-flag">%s</span>',
empty( $lang->flag ) ? esc_html( $lang->slug ) : $lang->flag
);
}
$output .= sprintf(
'<select name="%1$s"%2$s%3$s%4$s>' . "\n" . '%5$s' . "\n" . '</select>' . "\n",
$name = esc_attr( $args['name'] ),
isset( $args['id'] ) && ! $args['id'] ? '' : ' id="' . ( empty( $args['id'] ) ? $name : esc_attr( $args['id'] ) ) . '"',
empty( $args['class'] ) ? '' : ' class="' . esc_attr( $args['class'] ) . '"',
empty( $args['disabled'] ) ? '' : ' disabled="disabled"',
parent::walk( $elements, -1, $args )
);
return $output;
}
}