1 taxonomy.entity.inc | public TaxonomyTerm::uri() |
Implements EntityInterface::uri()
Overrides EntityInterface::uri
File
- core/
modules/ taxonomy/ taxonomy.entity.inc, line 107 - Entity classes and controllers for Taxonomy module.
Class
- TaxonomyTerm
- Defines the taxonomy term entity.
Code
public function uri() {
return array(
'path' => 'taxonomy/term/' . $this->tid,
'options' => array(),
);
}