public function TMGMTDefaultSourcePluginController::getUri in Translation Management Tool 7
Returns the Uri for this job item.
Parameters
TMGMTJobItem $job_item: The job item entity.
Overrides TMGMTSourcePluginControllerInterface::getUri
See also
1 call to TMGMTDefaultSourcePluginController::getUri()
- TMGMTNodeSourcePluginController::getUri in sources/
node/ tmgmt_node.plugin.inc - Returns the Uri for this job item.
4 methods override TMGMTDefaultSourcePluginController::getUri()
- TMGMTEntitySourcePluginController::getUri in sources/
entity/ tmgmt_entity.plugin.inc - Returns the Uri for this job item.
- TMGMTI18nStringSourcePluginController::getUri in sources/
i18n_string/ tmgmt_i18n_string.plugin.inc - Returns the Uri for this job item.
- TMGMTNodeSourcePluginController::getUri in sources/
node/ tmgmt_node.plugin.inc - Returns the Uri for this job item.
- TMGMTTestSourcePluginController::getUri in tests/
tmgmt_test.plugin.source.inc - Returns the Uri for this job item.
File
- plugin/
tmgmt.plugin.source.inc, line 25 - Contains the abstract source base plugin class.
Class
- TMGMTDefaultSourcePluginController
- Default controller class for source plugins.
Code
public function getUri(TMGMTJobItem $job_item) {
return array(
'path' => '',
'options' => array(),
);
}