/**
* Get the options
*
* @return Registry Object with the options
*
* @since 3.2
*/
public function getOptions()
{
// Always return a Registry instance
if (!$this->options instanceof Registry) {
$this->resetOptions();
}
return $this->options;
}