To use Slider, you need to connect to the admin interface of the framework WebSite-PHP. Once connected you will go to the menu Configuration -> Configure modules and enable the module Slider. File: /pages/tutorials/slider/slider-03.php
<?php class Slider03 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Slider with jQuery Nivo Slider"; $slider = new NivoSlider(); $slider->addImage( "img/slider/1.jpg", "img/slider/1-small.jpg", "The Sacred Dog by cuellar", new Link("http://www.flickr.com/photos/cuellar/ 2961728459/in/pool-creative_commons-_free_pictures", Link::TARGET_BLANK)); $slider->addImage( "img/slider/2.jpg", "img/slider/2-small.jpg", "Eilean Donan Castle by yashima", new Link("http://www.flickr.com/photos/yashima/ 286642374/in/pool-creative_commons-_free_pictures", Link::TARGET_BLANK)); $slider->addImage( "img/slider/3.jpg", "img/slider/3-small.jpg", "In The Blue by sharkbait", new Link("http://www.flickr.com/photos/sharkbait/ 2992242065/in/pool-809956@N25/", Link::TARGET_BLANK)); $this->render = $slider; } } ?>
Go back to tutorial of the componant Slider
|