You are here

LatestActivityInterface.php in Opigno Learning path 8

Same filename and directory in other branches
  1. 3.x src/LatestActivityInterface.php

File

src/LatestActivityInterface.php
View source
<?php

namespace Drupal\opigno_learning_path;

use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Session\AccountInterface;

/**
 * Provides an interface defining a LatestActivity entity.
 *
 * @ingroup opigno_learning_path
 */
interface LatestActivityInterface extends ContentEntityInterface {

  /**
   * Gets the training ID.
   *
   * @return int
   *   The training ID.
   */
  public function getTrainingId();

  /**
   * Sets the training ID.
   *
   * @param int $id
   *   The training ID.
   *
   * @return \Drupal\opigno_learning_path\LatestActivityInterface
   *   The called entity.
   */
  public function setTrainingId($id);

  /**
   * Gets the training entity.
   *
   * @return \Drupal\group\Entity\GroupInterface
   *   The training entity.
   */
  public function getTraining();

  /**
   * Sets the training entity.
   *
   * @param \Drupal\group\Entity\GroupInterface $training
   *   The training entity.
   *
   * @return \Drupal\opigno_learning_path\LatestActivityInterface
   *   The called entity.
   */
  public function setTraining($training);

  /**
   * Gets the module ID.
   *
   * @return int
   *   The module ID.
   */
  public function getModuleId();

  /**
   * Sets the module ID.
   *
   * @param int $id
   *   The module ID.
   *
   * @return \Drupal\opigno_learning_path\LatestActivityInterface
   *   The called entity.
   */
  public function setModuleId($id);

  /**
   * Gets the module entity.
   *
   * @return \Drupal\opigno_module\Entity\OpignoModuleInterface
   *   The module entity.
   */
  public function getModule();

  /**
   * Sets the module entity.
   *
   * @param \Drupal\opigno_module\Entity\OpignoModuleInterface $module
   *   The module entity.
   *
   * @return \Drupal\opigno_learning_path\LatestActivityInterface
   *   The called entity.
   */
  public function setModule($module);

  /**
   * Gets the timestamp.
   *
   * @return int
   *   The timestamp.
   */
  public function getTimestamp();

  /**
   * Sets the timestamp.
   *
   * @param int $value
   *   The timestamp.
   *
   * @return \Drupal\opigno_learning_path\LatestActivityInterface
   *   The called entity.
   */
  public function setTimestamp($value);

  /**
   * Gets the user ID.
   *
   * @return int
   *   The user ID.
   */
  public function getUserId();

  /**
   * Sets the user ID.
   *
   * @param int $uid
   *   The user ID.
   *
   * @return \Drupal\opigno_learning_path\LatestActivityInterface
   *   The called entity.
   */
  public function setUserId($uid);

  /**
   * Gets the user entity.
   *
   * @return \Drupal\user\Entity\User
   *   The user entity.
   */
  public function getUser();

  /**
   * Sets the user entity.
   *
   * @param \Drupal\Core\Session\AccountInterface $account
   *   User account.
   *
   * @return \Drupal\opigno_learning_path\LatestActivityInterface
   *   The called entity.
   */
  public function setUser(AccountInterface $account);

}

Interfaces

Namesort descending Description
LatestActivityInterface Provides an interface defining a LatestActivity entity.