Back to OpensearchDocument class

Method setShortName

public \Joomla\CMS\Document\OpensearchDocument
setShortName
(mixed $name)
Sets the short name
Parameters
  • string $name The name.
Returns
  • \Joomla\CMS\Document\OpensearchDocument instance of $this to allow chaining
Since
  • 1.7.0

Method setShortName - Source code

/**
 * Sets the short name
 *
 * @param   string  $name  The name.
 *
 * @return  OpensearchDocument instance of $this to allow chaining
 *
 * @since   1.7.0
 */
public function setShortName($name)
{
    $this->_shortName = $name;
    return $this;
}