updated core to 7.58 (right after the site was hacked)
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Contains the base plugin interface.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Base interface for Translation Management plugins.
|
||||
*/
|
||||
interface TMGMTPluginBaseInterface {
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param $type
|
||||
* The plugin type.
|
||||
* @param $plugin
|
||||
* The machine-readable name of the plugin.
|
||||
*/
|
||||
public function __construct($type, $plugin);
|
||||
|
||||
/**
|
||||
* Returns the info of the type of the plugin.
|
||||
*
|
||||
* @see tmgmt_source_plugin_info()
|
||||
*/
|
||||
public function pluginInfo();
|
||||
|
||||
/**
|
||||
* Returns the type of the plugin.
|
||||
*/
|
||||
public function pluginType();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user