GRAYBYTE WORDPRESS FILE MANAGER1200

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/local/lib64/perl5/XML/LibXML/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/local/lib64/perl5/XML/LibXML//AttributeHash.pm
package XML::LibXML::AttributeHash;

use strict;
use warnings;
use Scalar::Util qw//;
use Tie::Hash;
our @ISA = qw/Tie::Hash/;

use vars qw($VERSION);
$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

BEGIN
{
    *__HAS_WEAKEN  = defined(&Scalar::Util::weaken)
        ? sub () { 1 }
        : sub () { 0 };
};

sub element
{
    return $_[0][0];
}

sub from_clark
{
    my ($self, $str) = @_;
    if ($str =~ m! \{ (.+) \} (.+) !x)
    {
        return ($1, $2);
    }
    return (undef, $str);
}

sub to_clark
{
    my ($self, $ns, $local) = @_;
    defined $ns ? "{$ns}$local" : $local;
}

sub all_keys
{
    my ($self, @keys) = @_;

    my $elem = $self->element;

    foreach my $attr (defined($elem) ? $elem->attributes : ())
    {
        if (! $attr->isa('XML::LibXML::Namespace'))
        {
            push @keys, $self->to_clark($attr->namespaceURI, $attr->localname);
        }
    }

    return sort @keys;
}

sub TIEHASH
{
    my ($class, $element, %args) = @_;
    my $self = bless [$element, undef, \%args], $class;
    if (__HAS_WEAKEN and $args{weaken})
    {
        Scalar::Util::weaken( $self->[0] );
    }
    return $self;
}

sub STORE
{
    my ($self, $key, $value) = @_;
    my ($key_ns, $key_local) = $self->from_clark($key);
    if (defined $key_ns)
    {
        return $self->element->setAttributeNS($key_ns, "xxx:$key_local", "$value");
    }
    else
    {
        return $self->element->setAttribute($key_local, "$value");
    }
}

sub FETCH
{
    my ($self, $key) = @_;
    my ($key_ns, $key_local) = $self->from_clark($key);
    if (defined $key_ns)
    {
        return $self->element->getAttributeNS($key_ns, "$key_local");
    }
    else
    {
        return $self->element->getAttribute($key_local);
    }
}

sub EXISTS
{
    my ($self, $key) = @_;
    my ($key_ns, $key_local) = $self->from_clark($key);
    if (defined $key_ns)
    {
        return $self->element->hasAttributeNS($key_ns, "$key_local");
    }
    else
    {
        return $self->element->hasAttribute($key_local);
    }
}

sub DELETE
{
    my ($self, $key) = @_;
    my ($key_ns, $key_local) = $self->from_clark($key);
    if (defined $key_ns)
    {
        return $self->element->removeAttributeNS($key_ns, "$key_local");
    }
    else
    {
        return $self->element->removeAttribute($key_local);
    }
}

sub FIRSTKEY
{
    my ($self) = @_;
    my @keys = $self->all_keys;
    $self->[1] = \@keys;
    if (wantarray)
    {
        return ($keys[0], $self->FETCH($keys[0]));
    }
    $keys[0];
}

sub NEXTKEY
{
    my ($self, $lastkey) = @_;
    my @keys = defined $self->[1] ? @{ $self->[1] } : $self->all_keys;
    my $found;
    foreach my $k (@keys)
    {
        if ($k gt $lastkey)
        {
            $found = $k and last;
        }
    }
    if (!defined $found)
    {
        $self->[1] = undef;
        return;
    }
    if (wantarray)
    {
        return ($found, $self->FETCH($found));
    }
    return $found;
}

sub SCALAR
{
    my ($self) = @_;
    return $self->element;
}

sub CLEAR
{
    my ($self) = @_;
    foreach my $k ($self->all_keys)
    {
        $self->DELETE($k);
    }
    return $self;
}

__PACKAGE__
__END__

=head1 NAME

XML::LibXML::AttributeHash - tie an XML::LibXML::Element to a hash to access its attributes

=head1 SYNOPSIS

 tie my %hash, 'XML::LibXML::AttributeHash', $element;
 $hash{'href'} = 'http://example.com/';
 print $element->getAttribute('href') . "\n";

=head1 DESCRIPTION

This class allows an element's attributes to be accessed as if they were a
plain old Perl hash. Attribute names become hash keys. Namespaced attributes
are keyed using Clark notation.

 my $XLINK = 'http://www.w3.org/1999/xlink';
 tie my %hash, 'XML::LibXML::AttributeHash', $element;
 $hash{"{$XLINK}href"} = 'http://localhost/';
 print $element->getAttributeNS($XLINK, 'href') . "\n";

There is rarely any need to use XML::LibXML::AttributeHash directly. In
general, it is possible to take advantage of XML::LibXML::Element's
overloading. The example in the SYNOPSIS could have been written:

 $element->{'href'} = 'http://example.com/';
 print $element->getAttribute('href') . "\n";

The tie interface allows the passing of additional arguments to
XML::LibXML::AttributeHash:

 tie my %hash, 'XML::LibXML::AttributeHash', $element, %args;

Currently only one argument is supported, the boolean "weaken" which (if
true) indicates that the tied object's reference to the element should be
a weak reference. This is used by XML::LibXML::Element's overloading. The
"weaken" argument is ignored if you don't have a working Scalar::Util::weaken.

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 11 2024 08:32:03
root / root
0755
SAX
--
March 11 2024 08:32:03
root / root
0755
Attr.pod
4.024 KB
January 24 2024 15:13:41
root / root
0444
AttributeHash.pm
4.485 KB
January 24 2024 15:03:50
root / root
0444
Boolean.pm
1.563 KB
January 24 2024 15:03:50
root / root
0444
CDATASection.pod
1.284 KB
January 24 2024 15:13:41
root / root
0444
Comment.pod
1.363 KB
January 24 2024 15:13:41
root / root
0444
Common.pm
8.202 KB
January 24 2024 15:03:50
root / root
0444
Common.pod
3.586 KB
January 24 2024 15:13:41
root / root
0444
DOM.pod
6.229 KB
January 24 2024 15:13:41
root / root
0444
Devel.pm
4.91 KB
January 24 2024 15:03:50
root / root
0444
Document.pod
21.087 KB
January 24 2024 15:13:41
root / root
0444
DocumentFragment.pod
0.8 KB
January 24 2024 15:13:41
root / root
0444
Dtd.pod
1.991 KB
January 24 2024 15:13:41
root / root
0444
Element.pod
13.482 KB
January 24 2024 15:13:41
root / root
0444
ErrNo.pm
27.831 KB
January 24 2024 15:03:50
root / root
0444
ErrNo.pod
0.577 KB
January 24 2024 15:13:41
root / root
0444
Error.pm
8.45 KB
January 24 2024 15:03:50
root / root
0444
Error.pod
5.978 KB
January 24 2024 15:13:41
root / root
0444
InputCallback.pod
9.592 KB
January 24 2024 15:13:41
root / root
0444
Literal.pm
2.045 KB
January 24 2024 15:03:50
root / root
0444
Namespace.pod
3.283 KB
January 24 2024 15:13:41
root / root
0444
Node.pod
25.666 KB
January 24 2024 15:13:41
root / root
0444
NodeList.pm
7.313 KB
January 24 2024 15:03:50
root / root
0444
Number.pm
1.871 KB
January 24 2024 15:03:50
root / root
0444
PI.pod
2.218 KB
January 24 2024 15:13:41
root / root
0444
Parser.pod
27.786 KB
January 24 2024 15:13:41
root / root
0444
Pattern.pod
2.905 KB
January 24 2024 15:13:41
root / root
0444
Reader.pm
5.749 KB
January 24 2024 15:03:50
root / root
0444
Reader.pod
17.601 KB
January 24 2024 15:13:41
root / root
0444
RegExp.pod
1.537 KB
January 24 2024 15:13:41
root / root
0444
RelaxNG.pod
2.342 KB
January 24 2024 15:13:41
root / root
0444
SAX.pm
3.449 KB
January 24 2024 15:03:50
root / root
0444
SAX.pod
1.762 KB
January 24 2024 15:13:41
root / root
0444
Schema.pod
2.194 KB
January 24 2024 15:13:41
root / root
0444
Text.pod
5.47 KB
January 24 2024 15:13:41
root / root
0444
XPathContext.pm
3.147 KB
January 24 2024 15:03:50
root / root
0444
XPathContext.pod
11.491 KB
January 24 2024 15:13:41
root / root
0444
XPathExpression.pod
1.639 KB
January 24 2024 15:13:41
root / root
0444

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF