private function drupalchatSettingsForm::_drupalchat_remove_extension in DrupalChat 8
1 call to drupalchatSettingsForm::_drupalchat_remove_extension()
File
- src/
Form/ drupalchatSettingsForm.php, line 367 - Contains Drupal\drupalchat\Form\drupalchatSettingsForm
Class
- drupalchatSettingsForm
- Class drupalchatSettingsForm
Namespace
Drupal\drupalchat\FormCode
private function _drupalchat_remove_extension($strName) {
$ext = strrchr($strName, '.');
if ($ext !== false) {
$strName = substr($strName, 0, -strlen($ext));
}
return $strName;
}