url = $url; $this->image = $image; $this->alt = $alt; $this->width = $width; $this->height = $height; } /** * Returns the set url. * * @return string */ public function get_url() { return $this->url; } /** * Returns the image. * * @return string */ public function get_image() { return $this->image; } /** * Returns the alt-text. * * @return string */ public function get_alt() { return $this->alt; } /** * Returns the width. * * @return string */ public function get_width() { return $this->width; } /** * Returns the height. * * @return string */ public function get_height() { return $this->height; } }