You are here

function _bootstrap_library_array_to_string in Bootstrap Library 8

Converts an array of lines into an text with lines (\n).

Return value

string Text with lines

2 calls to _bootstrap_library_array_to_string()
BootstrapLibrarySettingsForm::buildForm in src/BootstrapLibrarySettingsForm.php
Form constructor.
_bootstrap_library_check_url in ./bootstrap_library.module
Check if bootstrap_library should be active for the current URL.

File

./bootstrap_library.module, line 147
Primarily Drupal hooks.

Code

function _bootstrap_library_array_to_string($array) {
  return implode("\r\n", $array);
}