/**
  * Sets object method used to decide if a new version should be created
  * 
  * @param   string
  */
 public static function setVersionConditionMethod($method_name)
 {
     $previous_method = self::$condition_method;
     self::$condition_method = $method_name;
     return $previous_method;
 }