<?php

class Controller
{
    private $model;
 
    public function __construct($model){
        $this->model = $model;
    }
 
    public function clicked() {
        $this->model->linkstring = "You've clicked here thanks.  Now see the iframe, but if not to your liking, change URL.";
        $this->model->linktitle = "Thanks for the click.  Now see the iframe, but if not to your liking, change URL.";
        $this->model->myifdisplay = "block";
    }
 
    public function changed($via) {
        $this->model->myifdisplay = "block";
        $this->model->myifsrc = $via;
    }
}
?>
