I'm trying to understand the Decorator pattern and I have read other related questions on SO, then I decided to try it with a trivial example (I'm a PHP novice):
interface iTitle {
public function getTitle();
}
class Title implements iTitle {
protected $_text;
public function __construct() {
$this->_text='Our page';
}
public function getTitle() {
return $this->_text;
}
}
abstract class TitleDecorator implements iTitle {
protected $_title;
public function __construct(iTitle $title) {
$this->_title=$title;
}
}
class BeforeTitle extends TitleDecorator {
public function getTitle() {
return 'Welcome to '.$this->_title->getTitle();
}
}
class AfterTitle extends TitleDecorator {
public function getTitle() {
return $this->_title->getTitle().', Dear user!';
}
}
Is this a (kind of) right implementation of the Decorator pattern? If no, what would be the right way? If yes, could this be improved and how? Or maybe this would be more suitable for another pattern?
Any help/ideas would be appreciated, thanks in advance !

