Created
May 10, 2017 17:14
-
-
Save ricardoaugusto/b20dcde390143a2bca9c3d77bafe7251 to your computer and use it in GitHub Desktop.
Decorator Design Pattern
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Book { | |
private $author; | |
private $title; | |
function __construct($title_in, $author_in) { | |
$this->author = $author_in; | |
$this->title = $title_in; | |
} | |
function getAuthor() { | |
return $this->author; | |
} | |
function getTitle() { | |
return $this->title; | |
} | |
function getAuthorAndTitle() { | |
return $this->getTitle().' by '.$this->getAuthor(); | |
} | |
} | |
class BookTitleDecorator { | |
protected $book; | |
protected $title; | |
public function __construct(Book $book_in) { | |
$this->book = $book_in; | |
$this->resetTitle(); | |
} | |
//doing this so original object is not altered | |
function resetTitle() { | |
$this->title = $this->book->getTitle(); | |
} | |
function showTitle() { | |
return $this->title; | |
} | |
} | |
class BookTitleExclaimDecorator extends BookTitleDecorator { | |
private $btd; | |
public function __construct(BookTitleDecorator $btd_in) { | |
$this->btd = $btd_in; | |
} | |
function exclaimTitle() { | |
$this->btd->title = "!" . $this->btd->title . "!"; | |
} | |
} | |
class BookTitleStarDecorator extends BookTitleDecorator { | |
private $btd; | |
public function __construct(BookTitleDecorator $btd_in) { | |
$this->btd = $btd_in; | |
} | |
function starTitle() { | |
$this->btd->title = Str_replace(" ","*",$this->btd->title); | |
} | |
} | |
writeln('BEGIN TESTING DECORATOR PATTERN'); | |
writeln(''); | |
$patternBook = new Book('Gamma, Helm, Johnson, and Vlissides', 'Design Patterns'); | |
$decorator = new BookTitleDecorator($patternBook); | |
$starDecorator = new BookTitleStarDecorator($decorator); | |
$exclaimDecorator = new BookTitleExclaimDecorator($decorator); | |
writeln('showing title : '); | |
writeln($decorator->showTitle()); | |
writeln(''); | |
writeln('showing title after two exclaims added : '); | |
$exclaimDecorator->exclaimTitle(); | |
$exclaimDecorator->exclaimTitle(); | |
writeln($decorator->showTitle()); | |
writeln(''); | |
writeln('showing title after star added : '); | |
$starDecorator->starTitle(); | |
writeln($decorator->showTitle()); | |
writeln(''); | |
writeln('showing title after reset: '); | |
writeln($decorator->resetTitle()); | |
writeln($decorator->showTitle()); | |
writeln(''); | |
writeln('END TESTING DECORATOR PATTERN'); | |
function writeln($line_in) { | |
echo $line_in."<br/>"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment