You are here

interface TMGMTSourceUIControllerInterface in Translation Management Tool 7

Interface for source ui controllers.

Hierarchy

Expanded class hierarchy of TMGMTSourceUIControllerInterface

All classes that implement TMGMTSourceUIControllerInterface

Related topics

File

plugin/tmgmt.ui.interface.source.inc, line 9

View source
interface TMGMTSourceUIControllerInterface extends TMGMTPluginBaseInterface {

  /**
   * Form callback for the job item review form.
   */
  public function reviewForm($form, &$form_state, TMGMTJobItem $item);

  /**
   * Form callback for the data item element form.
   */
  public function reviewDataItemElement($form, &$form_state, $data_item_key, $parent_key, array $data_item, TMGMTJobItem $item);

  /**
   * Validation callback for the job item review form.
   */
  public function reviewFormValidate($form, &$form_state, TMGMTJobItem $item);

  /**
   * Submit callback for the job item review form.
   */
  public function reviewFormSubmit($form, &$form_state, TMGMTJobItem $item);

  /**
   * {@inheritdoc}
   *
   * @see tmgmt_ui_menu().
   */
  public function hook_menu();

  /**
   * {@inheritdoc}
   *
   * @see tmgmt_ui_forms().
   */
  public function hook_forms();

  /**
   * {@inheritdoc}
   *
   * @see tmgmt_ui_views_default_views().
   */
  public function hook_views_default_views();

}

Members

Namesort descending Modifiers Type Description Overrides
TMGMTPluginBaseInterface::pluginInfo public function Returns the info of the type of the plugin. 1
TMGMTPluginBaseInterface::pluginType public function Returns the type of the plugin. 1
TMGMTPluginBaseInterface::__construct public function Constructor. 1
TMGMTSourceUIControllerInterface::hook_forms public function 1
TMGMTSourceUIControllerInterface::hook_menu public function 1
TMGMTSourceUIControllerInterface::hook_views_default_views public function 1
TMGMTSourceUIControllerInterface::reviewDataItemElement public function Form callback for the data item element form. 1
TMGMTSourceUIControllerInterface::reviewForm public function Form callback for the job item review form. 1
TMGMTSourceUIControllerInterface::reviewFormSubmit public function Submit callback for the job item review form. 1
TMGMTSourceUIControllerInterface::reviewFormValidate public function Validation callback for the job item review form. 1