Айде!

[php]class Post {
private $webtourist;
public function __construct ($forumInstance) {
$this->webtourist = $forumInstance;
}
public function sayHappyBirthday($message) {
$message = htmlentities($message);
$this->webtourist->greet($message);
}
}
$forum = new WebTourist();
$post = new Post($forum);
$post->sayHappyBirthday('Честит рожден ден!');[/php]