public function LingotekFake::setProjectCallBackUrl in Lingotek Translation 4.0.x
Same name and namespace in other branches
- 8 tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
- 8.2 tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
- 3.0.x tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
- 3.1.x tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
- 3.2.x tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
- 3.3.x tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
- 3.4.x tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
- 3.5.x tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
- 3.6.x tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
- 3.7.x tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
- 3.8.x tests/modules/lingotek_test/src/LingotekFake.php \Drupal\lingotek_test\LingotekFake::setProjectCallBackUrl()
Sets the project callback url.
Parameters
string $project_id: The project id.
string $callback_url: The callback url.
Return value
bool TRUE if successful, FALSE if not.
Overrides LingotekInterface::setProjectCallBackUrl
File
- tests/
modules/ lingotek_test/ src/ LingotekFake.php, line 122
Class
Namespace
Drupal\lingotek_testCode
public function setProjectCallBackUrl($project_id, $callback_url) {
// We ignore the call and simulate a success.
return TRUE;
}