phpMv -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Loading...
Searching...
No Matches
HtmlCarouselControl.php
Go to the documentation of this file.
1<?php
2
4
6
8 protected $sens;
9 protected $glyphIcon;
10 protected $caption;
11
12 public function __construct($identifier) {
13 parent::__construct($identifier);
14 $this->_template=include __DIR__.'/../templates/tplCarouselControl.php';
15 }
16
17 public function getSens() {
18 return $this->sens;
19 }
20
21 public function setSens($sens) {
22 $this->sens=$sens;
23 return $this;
24 }
25
26 public function getGlyphIcon() {
27 return $this->glyphIcon;
28 }
29
30 public function setGlyphIcon($glyphIcon) {
31 $this->glyphIcon=$glyphIcon;
32 return $this;
33 }
34
35 public function getCaption() {
36 return $this->caption;
37 }
38
39 public function setCaption($caption) {
40 $this->caption=$caption;
41 return $this;
42 }
43}