You are here

class purl_path_element in Persistent URL 6

Same name and namespace in other branches
  1. 7 purl.module \purl_path_element

Hierarchy

Expanded class hierarchy of purl_path_element

File

./purl.module, line 949

View source
class purl_path_element {
  public $processor;
  public $value;
  public $provider;
  public $id;
  function __construct($processor, $value, $provider, $id) {
    $this->processor = $processor;
    $this->value = $value;
    $this->provider = $provider;
    $this->id = $id;
  }

}

Members