<?phpclass Picture01 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Simple Picture"; $table = new Table(); $pic1 = new Picture("img/slider/1-small.jpg"); $pic1->setTitle("The Sacred Dog by cuellar"); $pic2 = new Picture("img/slider/2-small.jpg"); $pic2->setTitle("Eilean Donan Castle by yashima"); $pic3 = new Picture("img/slider/3-small.jpg"); $pic3->setTitle("In The Blue by sharkbait"); $table->addRowColumns($pic1, $pic2, $pic3); $this->render = $table; }}?>