123456789101112131415161718 |
- <?php
- /**
- * A class the controller will use for instantiating the TripalEntity entity.
- */
- class TripalEntity extends Entity {
- public function __construct($values = array(), $entity_type) {
- parent::__construct($values, $entity_type);
- }
- protected function defaultLabel() {
- return $this->title;
- }
- protected function defaultUri() {
- return array('path' => 'TripalEntity/' . $this->id);
- }
- }
|