You are here

private function drupalchatSettingsForm::_drupalchat_remove_extension in DrupalChat 8

1 call to drupalchatSettingsForm::_drupalchat_remove_extension()
drupalchatSettingsForm::_drupalchat_load_themes in src/Form/drupalchatSettingsForm.php

File

src/Form/drupalchatSettingsForm.php, line 367
Contains Drupal\drupalchat\Form\drupalchatSettingsForm

Class

drupalchatSettingsForm
Class drupalchatSettingsForm

Namespace

Drupal\drupalchat\Form

Code

private function _drupalchat_remove_extension($strName) {
  $ext = strrchr($strName, '.');
  if ($ext !== false) {
    $strName = substr($strName, 0, -strlen($ext));
  }
  return $strName;
}