Help for this page

Select Code to Download


  1. or download this
        $obj->foo( 'bar' );
        $value1 = $obj->foo;
        $obj->baz( 'qux' );
        $value2 = $obj->baz;
    
  2. or download this
        $products = $obj->get_product;
        $product  = $obj->get_product( $product_id );
    
  3. or download this
        sub new {
            my $self = shift;
            my %args = @_;
            bless { ... }, $self;
        }
    
  4. or download this
        sub as_string {
            my $self = shift;
    ...
                if ($mode =~ /rss/i) {
                ...
        }
    
  5. or download this
        $self->{_xsl_string} = _http_get($uri);
    
  6. or download this
        $self->{_xsl_string} = $self->_http_get($uri);