You are here

function google_tag_update_7102 in GoogleTagManager 7

Same name and namespace in other branches
  1. 7.2 google_tag.install \google_tag_update_7102()

Create directory for snippet files, if not present.

File

./google_tag.install, line 145
Provides install, update, and uninstall functions.

Code

function google_tag_update_7102(&$sandbox) {
  $result = _google_tag_snippet_directory_prepare();
  return t('The directory exists (or was created) and is writable: @result', array(
    '@result' => $result ? 1 : 0,
  ));
}