uawdijnntqw1x1x1
IP : 216.73.216.119
Hostname : xhost1.intravision.ru
Kernel : Linux xhost1.intravision.ru 3.16.0-7-amd64 #1 SMP Debian 3.16.59-1 (2018-10-03) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
lib
/
vim
/
..
/
apache2
/
..
/
php5
/
..
/
python
/
..
/
..
/
..
/
usr
/
share
/
python
/
..
/
webmin
/
WebminUI
/
User.pm
/
/
package WebminUI::User; use WebminUI::Textbox; use WebminCore; @ISA = ( "WebminUI::Textbox" ); =head2 new WebminUI::User(name, value, [multiple], [disabled]) A text box for entering or selecting one or many Unix usernames =cut sub new { if (defined(&WebminUI::Theme::User::new)) { return new WebminUI::Theme::User(@_[1..$#_]); } my ($self, $name, $value, $multiple, $disabled) = @_; $self = new WebminUI::Textbox($name, $value, $multiple ? 40 : 15, $disabled); bless($self); $self->set_multiple($multiple); return $self; } =head2 html() Returns the HTML for this user input =cut sub html { my ($self) = @_; my $rv = WebminUI::Textbox::html($self); my $name = $self->get_name(); my $multiple = $self->get_multiple(); local $w = $multiple ? 500 : 300; $rv .= " <input type=button name=${name}_button onClick='ifield = form.$name; chooser = window.open(\"$gconfig{'webprefix'}/user_chooser.cgi?multi=$multiple&user=\"+escape(ifield.value), \"chooser\", \"toolbar=no,menubar=no,scrollbars=yes,width=$w,height=200\"); chooser.ifield = ifield; window.ifield = ifield' value=\"...\">\n"; return $rv; } sub set_multiple { my ($self, $multiple) = @_; $self->{'multiple'} = $multiple; } sub get_multiple { my ($self) = @_; return $self->{'multiple'}; } =head2 get_input_names() Returns the actual names of all HTML elements that make up this input =cut sub get_input_names { my ($self) = @_; return ( $self->{'name'}, $self->{'name'}."_button" ); } 1;
/var/lib/vim/../apache2/../php5/../python/../../../usr/share/python/../webmin/WebminUI/User.pm