You are here

interface LTIToolProviderOutcomesResourceEntityControllerInterface in LTI Tool Provider 7

@file Entity for outcome resource. Contains all related entity functions. Entity views are found here

Hierarchy

Expanded class hierarchy of LTIToolProviderOutcomesResourceEntityControllerInterface

All classes that implement LTIToolProviderOutcomesResourceEntityControllerInterface

File

lti_tool_provider_outcomes/LTIToolProviderOutcomesResourceEntityController.class.php, line 9
Entity for outcome resource. Contains all related entity functions. Entity views are found here

View source
interface LTIToolProviderOutcomesResourceEntityControllerInterface extends DrupalEntityControllerInterface {

  /**
   * Create.
   */
  public function create();

  /**
   * Save.
   *
   * @param object $entity
   *   The Resource to save.
   */
  public function save($entity);

  /**
   * Delete a Resource.
   *
   * @param object $entity
   *   The Resource to delete.
   */
  public function delete($entity);

}

Members