public function EasyRdf_Literal_Boolean::isTrue

Return true if the value of the literal is 'true' or '1'

Return value

bool

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Boolean.php, line 81

Class

EasyRdf_Literal_Boolean
Class that represents an RDF Literal of datatype xsd:boolean

Code

public function isTrue() {
  return strtolower($this->value) === 'true' or $this->value === '1';
}