You are here

protected function FormAssemblyEntity::defaultUri in FormAssembly 7

Overrides the parent method to implement a custom default URI.

Return value

array Drupal path specification

Overrides Entity::defaultUri

File

includes/FormAssemblyEntity.php, line 30
An Entity class for the FormAssembly entity

Class

FormAssemblyEntity
@file An Entity class for the FormAssembly entity

Code

protected function defaultUri() {
  return array(
    'path' => 'formassembly/' . $this
      ->identifier(),
  );
}