public function EasyRdf_Format::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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
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
}