You are here

public function sOAuthRequest::set_parameter in jQuery social stream 7.2

Same name and namespace in other branches
  1. 7 jquery_social_stream.js.inc \sOAuthRequest::set_parameter()
1 call to sOAuthRequest::set_parameter()
sOAuthRequest::sign_request in ./jquery_social_stream.js.inc

File

./jquery_social_stream.js.inc, line 764
JS callbacks.

Class

sOAuthRequest

Code

public function set_parameter($name, $value, $allow_duplicates = TRUE) {
  if ($allow_duplicates && isset($this->parameters[$name])) {

    // We have already added parameter(s) with this name, so add to the list
    if (is_scalar($this->parameters[$name])) {

      // This is the first duplicate, so transform scalar (string)
      // into an array so we can add the duplicates
      $this->parameters[$name] = array(
        $this->parameters[$name],
      );
    }
    $this->parameters[$name][] = $value;
  }
  else {
    $this->parameters[$name] = $value;
  }
}