You are here

public function EasyRdf_Format::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Format.php \EasyRdf_Format::__construct()

This constructor is for internal use only. To create a new format, use the register method.

@ignore

Parameters

string $name The name of the format:

See also

EasyRdf_Format::register()

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Format.php, line 279

Class

EasyRdf_Format
Class the represents an RDF file format.

Code

public function __construct($name) {
  $this->name = $name;
  $this->label = $name;

  # Only a default
}