/**
  * @public
  * @brief Sets the name of the current theme.
  * @param $name string
  * @return void
  * @attention
  *     This method is for the theme changer feature. However, this API will be
  *     changed.
  */
 function setThemeName($name)
 {
     parent::setThemeName($name);
     $this->mXoopsConfig['theme_set'] = $name;
     $GLOBALS['xoopsConfig']['theme_set'] = $name;
 }