identifier = $identifier; $this->title = $title; $this->description = $description; $this->icon = $icon; } /** * Get a unique identifier for this widget type. * * @return String widget identifier (guid) */ public function getIdentifier() { return $this->identifier; } /** * Get the human readable title of this widget. * @return String widget title */ public function getTitle() { return $this->title; } /** * Get the location of a logo for this widget. * @return String widget icon url */ public function getIcon() { return $this->icon; } /** * Get the description of the widget. * * @return String widget description */ public function getDescription() { return $this->description; } } ?>