示例#1
0
 /**
  * Creates a key value array of the parameters that need to be passed by  url.
  * @return array A key value map.
  */
 protected function getArgumentMap()
 {
     $argMap = parent::getArgumentMap();
     //add category and profile id
     $argMap["category"] = $this->parameter->getCategory();
     $argMap["classID"] = $this->parameter->getProfileMapId();
     return $argMap;
 }
示例#2
0
 /**
  * Creates a key value array of the parameters that need to be passed by url.
  * @return array A key value map.
  */
 protected function getArgumentMap()
 {
     $argMap = parent::getArgumentMap();
     //autocomplete parameters
     $argMap["languageCode"] = $this->parameter->getLanguageCode();
     $argMap["classID"] = $this->parameter->getProfileMapId();
     $argMap["queryString"] = $this->parameter->getInputQuery();
     return $argMap;
 }