updated core to 7.58 (right after the site was hacked)

This commit is contained in:
2018-04-20 23:48:40 +02:00
parent 18f4aba146
commit 9344a61b61
711 changed files with 99690 additions and 480 deletions

View File

@@ -0,0 +1,52 @@
<?php
/**
* Interface for source ui controllers.
*
* @ingroup tmgmt_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();
}