You are here

function _git_deploy_static_reset in Git Deploy 6

Same name and namespace in other branches
  1. 6.2 git_deploy.module \_git_deploy_static_reset()

Resets one or all Git Deploy static variables.

Parameters

string|null $name: Name of static variable to reset. Omit to reset all variables.

1 call to _git_deploy_static_reset()
git_deploy_mydropwizard_projects_alter in ./git_deploy.module
Implements hook_mydropwizard_projects_alter().

File

./git_deploy.module, line 64
Adds project, version and date information to projects checked out with Git.

Code

function _git_deploy_static_reset($name = NULL) {
  _git_deploy_static($name, NULL, TRUE);
}