@@ -5,5 +5,5 @@ |
||
5 | 5 | use Ajax\common\BaseEnum; |
6 | 6 | |
7 | 7 | abstract class Side extends BaseEnum { |
8 | - const BOTTOM="bottom",BOTH="",TOP="top"; |
|
8 | + const BOTTOM="bottom", BOTH="", TOP="top"; |
|
9 | 9 | } |
10 | 10 | \ No newline at end of file |
@@ -2,5 +2,5 @@ |
||
2 | 2 | namespace Ajax\semantic\html\base; |
3 | 3 | use Ajax\common\BaseEnum; |
4 | 4 | abstract class Size extends BaseEnum { |
5 | - const MASSIVE="massive",HUGE="huge",BIG="big",LARGE="large",MEDIUM="",SMALL="small",MINI="mini",TINY="tiny"; |
|
5 | + const MASSIVE="massive", HUGE="huge", BIG="big", LARGE="large", MEDIUM="", SMALL="small", MINI="mini", TINY="tiny"; |
|
6 | 6 | } |
7 | 7 | \ No newline at end of file |
@@ -7,7 +7,7 @@ |
||
7 | 7 | * @param string $side |
8 | 8 | * @return \Ajax\semantic\html\base\HtmlSemDoubleElement |
9 | 9 | */ |
10 | - public function setAttachment($value=Side::BOTH){ |
|
11 | - return $this->addToPropertyCtrl("class",$value." attached",Side::getConstantValues("attached")); |
|
10 | + public function setAttachment($value=Side::BOTH) { |
|
11 | + return $this->addToPropertyCtrl("class", $value." attached", Side::getConstantValues("attached")); |
|
12 | 12 | } |
13 | 13 | } |
14 | 14 | \ No newline at end of file |
@@ -9,20 +9,20 @@ discard block |
||
9 | 9 | protected $_states=[]; |
10 | 10 | protected $_baseClass; |
11 | 11 | |
12 | - public function addVariation($variation){ |
|
12 | + public function addVariation($variation) { |
|
13 | 13 | return $this->addToPropertyCtrl("class", $variation, $this->_variations); |
14 | 14 | } |
15 | 15 | |
16 | - public function addState($state){ |
|
16 | + public function addState($state) { |
|
17 | 17 | return $this->addToPropertyCtrl("class", $state, $this->_states); |
18 | 18 | } |
19 | 19 | |
20 | - public function setVariation($variation){ |
|
20 | + public function setVariation($variation) { |
|
21 | 21 | $this->setPropertyCtrl("class", $variation, $this->_variations); |
22 | 22 | return $this->addToProperty("class", $this->_baseClass); |
23 | 23 | } |
24 | 24 | |
25 | - public function setState($state){ |
|
25 | + public function setState($state) { |
|
26 | 26 | $this->setPropertyCtrl("class", $state, $this->_states); |
27 | 27 | return $this->addToProperty("class", $this->_baseClass); |
28 | 28 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * {@inheritDoc} |
32 | 32 | * @see \Ajax\common\html\HtmlSingleElement::setSize() |
33 | 33 | */ |
34 | - public function setSize($size){ |
|
34 | + public function setSize($size) { |
|
35 | 35 | return $this->addToPropertyCtrl("class", $size, Size::getConstants()); |
36 | 36 | } |
37 | 37 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * show it is currently unable to be interacted with |
40 | 40 | * @return \Ajax\semantic\html\elements\HtmlSemDoubleElement |
41 | 41 | */ |
42 | - public function setDisabled(){ |
|
42 | + public function setDisabled() { |
|
43 | 43 | return $this->addToProperty("class", "disabled"); |
44 | 44 | } |
45 | 45 | |
@@ -47,18 +47,18 @@ discard block |
||
47 | 47 | * @param string $color |
48 | 48 | * @return \Ajax\semantic\html\base\HtmlSemDoubleElement |
49 | 49 | */ |
50 | - public function setColor($color){ |
|
51 | - return $this->addToPropertyCtrl("class", $color,Color::getConstants()); |
|
50 | + public function setColor($color) { |
|
51 | + return $this->addToPropertyCtrl("class", $color, Color::getConstants()); |
|
52 | 52 | } |
53 | 53 | |
54 | - public function setFluid(){ |
|
54 | + public function setFluid() { |
|
55 | 55 | $this->addToProperty("class", "fluid"); |
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
59 | 59 | * can be formatted to appear on dark backgrounds |
60 | 60 | */ |
61 | - public function setInverted(){ |
|
61 | + public function setInverted() { |
|
62 | 62 | $this->addToProperty("class", "inverted"); |
63 | 63 | } |
64 | 64 | } |
65 | 65 | \ No newline at end of file |
@@ -10,7 +10,7 @@ |
||
10 | 10 | * @param string $value |
11 | 11 | * @return \Ajax\semantic\html\base\HtmlSemDoubleElement |
12 | 12 | */ |
13 | - public function setTextAlignment($value=TextAlignment::LEFT){ |
|
14 | - return $this->addToPropertyCtrl("class", $value,TextAlignment::getConstants()); |
|
13 | + public function setTextAlignment($value=TextAlignment::LEFT) { |
|
14 | + return $this->addToPropertyCtrl("class", $value, TextAlignment::getConstants()); |
|
15 | 15 | } |
16 | 16 | } |
17 | 17 | \ No newline at end of file |
@@ -15,23 +15,23 @@ discard block |
||
15 | 15 | * @author jc |
16 | 16 | * @version 1.001 |
17 | 17 | */ |
18 | -class HtmlGrid extends HtmlSemCollection{ |
|
18 | +class HtmlGrid extends HtmlSemCollection { |
|
19 | 19 | use TextAlignmentTrait; |
20 | 20 | private $_createCols; |
21 | 21 | private $_colSizing=true; |
22 | 22 | private $_implicitRows=false; |
23 | - public function __construct( $identifier,$numRows=1,$numCols=NULL,$createCols=true,$implicitRows=false){ |
|
24 | - parent::__construct( $identifier, "div","ui grid"); |
|
23 | + public function __construct($identifier, $numRows=1, $numCols=NULL, $createCols=true, $implicitRows=false) { |
|
24 | + parent::__construct($identifier, "div", "ui grid"); |
|
25 | 25 | $this->_implicitRows=$implicitRows; |
26 | 26 | $this->_createCols=$createCols; |
27 | - if(isset($numCols)){ |
|
27 | + if (isset($numCols)) { |
|
28 | 28 | //if($this->_createCols){ |
29 | 29 | $this->_colSizing=false; |
30 | 30 | //} |
31 | 31 | $cols=Wide::getConstants()["W".$numCols]; |
32 | - $this->addToProperty("class",$cols." column"); |
|
32 | + $this->addToProperty("class", $cols." column"); |
|
33 | 33 | } |
34 | - $this->setNumRows($numRows,$numCols); |
|
34 | + $this->setNumRows($numRows, $numCols); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -40,9 +40,9 @@ discard block |
||
40 | 40 | * @param int $numCols |
41 | 41 | * @return \Ajax\semantic\html\collections\HtmlGrid |
42 | 42 | */ |
43 | - public function setNumRows($numRows,$numCols=NULL){ |
|
43 | + public function setNumRows($numRows, $numCols=NULL) { |
|
44 | 44 | $count=$this->count(); |
45 | - for($i=$count;$i<$numRows;$i++){ |
|
45 | + for ($i=$count; $i<$numRows; $i++) { |
|
46 | 46 | $this->addItem($numCols); |
47 | 47 | } |
48 | 48 | return $this; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | * @param int $index |
54 | 54 | * @return \Ajax\semantic\html\collections\HtmlGridRow |
55 | 55 | */ |
56 | - public function getRow($index){ |
|
56 | + public function getRow($index) { |
|
57 | 57 | return $this->getItem($index); |
58 | 58 | } |
59 | 59 | |
@@ -62,9 +62,9 @@ discard block |
||
62 | 62 | * @param int $col |
63 | 63 | * @return \Ajax\semantic\html\collections\HtmlGridCol |
64 | 64 | */ |
65 | - public function getCell($row,$col){ |
|
65 | + public function getCell($row, $col) { |
|
66 | 66 | $row=$this->getItem($row); |
67 | - if(isset($row)){ |
|
67 | + if (isset($row)) { |
|
68 | 68 | $col=$row->getItem($col); |
69 | 69 | } |
70 | 70 | return $col; |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | * @param boolean $vertically |
76 | 76 | * @return \Ajax\semantic\html\collections\HtmlGrid |
77 | 77 | */ |
78 | - public function setDivided($vertically=false){ |
|
79 | - $value=($vertically===true)?"vertically divided":"divided"; |
|
78 | + public function setDivided($vertically=false) { |
|
79 | + $value=($vertically===true) ? "vertically divided" : "divided"; |
|
80 | 80 | return $this->addToProperty("class", $value); |
81 | 81 | } |
82 | 82 | |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | * @param boolean $internal true for internal cells |
86 | 86 | * @return \Ajax\semantic\html\collections\HtmlGrid |
87 | 87 | */ |
88 | - public function setCelled($internal=false){ |
|
89 | - $value=($internal===true)?"internal celled":"celled"; |
|
88 | + public function setCelled($internal=false) { |
|
89 | + $value=($internal===true) ? "internal celled" : "celled"; |
|
90 | 90 | return $this->addToProperty("class", $value); |
91 | 91 | } |
92 | 92 | |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | * automatically resize all elements to split the available width evenly |
95 | 95 | * @return \Ajax\semantic\html\collections\HtmlGrid |
96 | 96 | */ |
97 | - public function setEqualWidth(){ |
|
97 | + public function setEqualWidth() { |
|
98 | 98 | return $this->addToProperty("class", "equal width"); |
99 | 99 | } |
100 | 100 | |
@@ -103,9 +103,9 @@ discard block |
||
103 | 103 | * @param string $value |
104 | 104 | * @return \Ajax\semantic\html\collections\HtmlGrid |
105 | 105 | */ |
106 | - public function setPadded($value=NULL){ |
|
107 | - if(isset($value)) |
|
108 | - $this->addToPropertyCtrl("class", $value,array("vertically","horizontally")); |
|
106 | + public function setPadded($value=NULL) { |
|
107 | + if (isset($value)) |
|
108 | + $this->addToPropertyCtrl("class", $value, array("vertically", "horizontally")); |
|
109 | 109 | return $this->addToProperty("class", "padded"); |
110 | 110 | } |
111 | 111 | |
@@ -113,37 +113,37 @@ discard block |
||
113 | 113 | * @param boolean $very |
114 | 114 | * @return \Ajax\semantic\html\collections\HtmlGrid |
115 | 115 | */ |
116 | - public function setRelaxed($very=false){ |
|
117 | - $value=($very===true)?"very relaxed":"relaxed"; |
|
116 | + public function setRelaxed($very=false) { |
|
117 | + $value=($very===true) ? "very relaxed" : "relaxed"; |
|
118 | 118 | return $this->addToProperty("class", $value); |
119 | 119 | } |
120 | 120 | |
121 | - public function setVerticalAlignment($value=VerticalAlignment::MIDDLE){ |
|
122 | - return $this->addToPropertyCtrl("class", $value." aligned",VerticalAlignment::getConstantValues("aligned")); |
|
121 | + public function setVerticalAlignment($value=VerticalAlignment::MIDDLE) { |
|
122 | + return $this->addToPropertyCtrl("class", $value." aligned", VerticalAlignment::getConstantValues("aligned")); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |
126 | 126 | * {@inheritDoc} |
127 | 127 | * @see \Ajax\common\html\HtmlCollection::createItem() |
128 | 128 | */ |
129 | - protected function createItem($value){ |
|
130 | - if($this->_createCols===false) |
|
129 | + protected function createItem($value) { |
|
130 | + if ($this->_createCols===false) |
|
131 | 131 | $value=null; |
132 | - $item=new HtmlGridRow($this->identifier."-row-".($this->count()+1),$value,$this->_colSizing,$this->_implicitRows); |
|
132 | + $item=new HtmlGridRow($this->identifier."-row-".($this->count()+1), $value, $this->_colSizing, $this->_implicitRows); |
|
133 | 133 | return $item; |
134 | 134 | } |
135 | 135 | |
136 | - public function setValues($values){ |
|
136 | + public function setValues($values) { |
|
137 | 137 | $count=$this->count(); |
138 | - if($this->_createCols===false){ |
|
139 | - for($i=$count;$i<\sizeof($values);$i++){ |
|
138 | + if ($this->_createCols===false) { |
|
139 | + for ($i=$count; $i<\sizeof($values); $i++) { |
|
140 | 140 | $colSize=\sizeof($values[$i]); |
141 | - $this->addItem(new HtmlGridRow($this->identifier."-row-".($this->count()+1),$colSize,$this->_colSizing,$this->_implicitRows)); |
|
141 | + $this->addItem(new HtmlGridRow($this->identifier."-row-".($this->count()+1), $colSize, $this->_colSizing, $this->_implicitRows)); |
|
142 | 142 | } |
143 | 143 | } |
144 | - $count=\min(array($this->count(),\sizeof($values))); |
|
145 | - for($i=0;$i<$count;$i++){ |
|
146 | - $this->content[$i]->setValues($values[$i],$this->_createCols===false); |
|
144 | + $count=\min(array($this->count(), \sizeof($values))); |
|
145 | + for ($i=0; $i<$count; $i++) { |
|
146 | + $this->content[$i]->setValues($values[$i], $this->_createCols===false); |
|
147 | 147 | } |
148 | 148 | } |
149 | 149 |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | * @param string $onClick JS Code for click event |
21 | 21 | */ |
22 | 22 | public function __construct($identifier, $value="", $cssStyle=null, $onClick=null) { |
23 | - parent::__construct($identifier, "button","ui button"); |
|
23 | + parent::__construct($identifier, "button", "ui button"); |
|
24 | 24 | $this->content=$value; |
25 | 25 | if (isset($cssStyle)) { |
26 | 26 | $this->setStyle($cssStyle); |
@@ -46,20 +46,20 @@ discard block |
||
46 | 46 | * @return \Ajax\semantic\html\HtmlButton default : "" |
47 | 47 | */ |
48 | 48 | public function setStyle($cssStyle) { |
49 | - return $this->addToProperty("class",$cssStyle); |
|
49 | + return $this->addToProperty("class", $cssStyle); |
|
50 | 50 | } |
51 | 51 | |
52 | - public function setFocusable(){ |
|
52 | + public function setFocusable() { |
|
53 | 53 | $this->setProperty("tabindex", "0"); |
54 | 54 | } |
55 | 55 | |
56 | - public function setAnimated($content,$animation=""){ |
|
56 | + public function setAnimated($content, $animation="") { |
|
57 | 57 | $this->setTagName("div"); |
58 | 58 | $this->addToProperty("class", "animated ".$animation); |
59 | - $visible=new HtmlSemDoubleElement("visible-".$this->identifier,"div"); |
|
59 | + $visible=new HtmlSemDoubleElement("visible-".$this->identifier, "div"); |
|
60 | 60 | $visible->setClass("visible content"); |
61 | 61 | $visible->setContent($this->content); |
62 | - $hidden=new HtmlSemDoubleElement("hidden-".$this->identifier,"div"); |
|
62 | + $hidden=new HtmlSemDoubleElement("hidden-".$this->identifier, "div"); |
|
63 | 63 | $hidden->setClass("hidden content"); |
64 | 64 | $hidden->setContent($content); |
65 | 65 | $this->content=$visible.$hidden; |
@@ -69,9 +69,9 @@ discard block |
||
69 | 69 | * @param string|HtmlIcon $icon |
70 | 70 | * @return \Ajax\semantic\html\elements\HtmlButton |
71 | 71 | */ |
72 | - public function asIcon($icon){ |
|
72 | + public function asIcon($icon) { |
|
73 | 73 | $iconO=$icon; |
74 | - if(\is_string($icon)){ |
|
74 | + if (\is_string($icon)) { |
|
75 | 75 | $iconO=new HtmlIcon("icon-".$this->identifier, $icon); |
76 | 76 | } |
77 | 77 | $this->addToProperty("class", "icon"); |
@@ -85,14 +85,14 @@ discard block |
||
85 | 85 | * @param string $before |
86 | 86 | * @return \Ajax\semantic\html\elements\HtmlLabel |
87 | 87 | */ |
88 | - public function addLabel($caption,$before=false){ |
|
88 | + public function addLabel($caption, $before=false) { |
|
89 | 89 | $this->tagName="div"; |
90 | 90 | $this->addToProperty("class", "labeled"); |
91 | - $this->content=new HtmlButton("button-".$this->identifier,$this->content); |
|
91 | + $this->content=new HtmlButton("button-".$this->identifier, $this->content); |
|
92 | 92 | $this->content->setTagName("div"); |
93 | - $label=new HtmlLabel("label-".$this->identifier,$caption,"a"); |
|
93 | + $label=new HtmlLabel("label-".$this->identifier, $caption, "a"); |
|
94 | 94 | $label->setBasic(); |
95 | - $this->addContent($label,$before); |
|
95 | + $this->addContent($label, $before); |
|
96 | 96 | return $label; |
97 | 97 | } |
98 | 98 | /* |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | */ |
102 | 102 | public function fromArray($array) { |
103 | 103 | $array=parent::fromArray($array); |
104 | - foreach ( $array as $key => $value ) { |
|
104 | + foreach ($array as $key => $value) { |
|
105 | 105 | $this->setProperty($key, $value); |
106 | 106 | } |
107 | 107 | return $array; |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * show it is currently the active user selection |
112 | 112 | * @return \Ajax\semantic\html\elements\HtmlButton |
113 | 113 | */ |
114 | - public function setActive(){ |
|
114 | + public function setActive() { |
|
115 | 115 | return $this->addToProperty("class", "active"); |
116 | 116 | } |
117 | 117 | |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | * hint towards a positive consequence |
120 | 120 | * @return \Ajax\semantic\html\elements\HtmlButton |
121 | 121 | */ |
122 | - public function setPositive(){ |
|
122 | + public function setPositive() { |
|
123 | 123 | return $this->addToProperty("class", "positive"); |
124 | 124 | } |
125 | 125 | |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | * hint towards a negative consequence |
128 | 128 | * @return \Ajax\semantic\html\elements\HtmlButton |
129 | 129 | */ |
130 | - public function setNegative(){ |
|
130 | + public function setNegative() { |
|
131 | 131 | return $this->addToProperty("class", "negative"); |
132 | 132 | } |
133 | 133 | |
@@ -135,14 +135,14 @@ discard block |
||
135 | 135 | * formatted to toggle on/off |
136 | 136 | * @return \Ajax\semantic\html\elements\HtmlButton |
137 | 137 | */ |
138 | - public function setToggle(){ |
|
138 | + public function setToggle() { |
|
139 | 139 | return $this->addToProperty("class", "toggle"); |
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
143 | 143 | * @return \Ajax\semantic\html\elements\HtmlButton |
144 | 144 | */ |
145 | - public function setCircular(){ |
|
145 | + public function setCircular() { |
|
146 | 146 | return $this->addToProperty("class", "circular"); |
147 | 147 | } |
148 | 148 | |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | * button is less pronounced |
151 | 151 | * @return \Ajax\semantic\html\elements\HtmlButton |
152 | 152 | */ |
153 | - public function setBasic(){ |
|
153 | + public function setBasic() { |
|
154 | 154 | return $this->addToProperty("class", "basic"); |
155 | 155 | } |
156 | 156 | } |
157 | 157 | \ No newline at end of file |
@@ -11,35 +11,35 @@ discard block |
||
11 | 11 | */ |
12 | 12 | class HtmlButtonGroups extends HtmlSemDoubleElement { |
13 | 13 | |
14 | - public function __construct($identifier, $elements=array(),$asIcons=false) { |
|
15 | - parent::__construct($identifier, "div","ui buttons"); |
|
14 | + public function __construct($identifier, $elements=array(), $asIcons=false) { |
|
15 | + parent::__construct($identifier, "div", "ui buttons"); |
|
16 | 16 | $this->content=array(); |
17 | - if($asIcons===true) |
|
17 | + if ($asIcons===true) |
|
18 | 18 | $this->asIcons(); |
19 | - $this->addElements($elements,$asIcons); |
|
19 | + $this->addElements($elements, $asIcons); |
|
20 | 20 | } |
21 | - public function addElement($element,$asIcon=false){ |
|
21 | + public function addElement($element, $asIcon=false) { |
|
22 | 22 | $elementO=$element; |
23 | - if(\is_string($element)){ |
|
24 | - if($asIcon){ |
|
23 | + if (\is_string($element)) { |
|
24 | + if ($asIcon) { |
|
25 | 25 | $elementO=new HtmlButton("button-".\sizeof($this->content)); |
26 | 26 | $elementO->asIcon($element); |
27 | 27 | }else |
28 | - $elementO=new HtmlButton("button-".\sizeof($this->content),$element); |
|
28 | + $elementO=new HtmlButton("button-".\sizeof($this->content), $element); |
|
29 | 29 | } |
30 | 30 | $this->addContent($elementO); |
31 | 31 | } |
32 | 32 | |
33 | 33 | |
34 | - public function addElements($elements,$asIcons=false) { |
|
35 | - foreach ( $elements as $element ) { |
|
36 | - $this->addElement($element,$asIcons); |
|
34 | + public function addElements($elements, $asIcons=false) { |
|
35 | + foreach ($elements as $element) { |
|
36 | + $this->addElement($element, $asIcons); |
|
37 | 37 | } |
38 | 38 | return $this; |
39 | 39 | } |
40 | 40 | |
41 | - public function insertOr($aferIndex=0,$or="OR"){ |
|
42 | - $orElement=new HtmlSemDoubleElement("or-".$this->identifier,"div","or"); |
|
41 | + public function insertOr($aferIndex=0, $or="OR") { |
|
42 | + $orElement=new HtmlSemDoubleElement("or-".$this->identifier, "div", "or"); |
|
43 | 43 | $orElement->setProperty("data-text", $or); |
44 | 44 | array_splice($this->content, $aferIndex+1, 0, array($orElement)); |
45 | 45 | return $this; |
@@ -52,15 +52,15 @@ discard block |
||
52 | 52 | $this->addElements($array); |
53 | 53 | } |
54 | 54 | |
55 | - public function asIcons(){ |
|
55 | + public function asIcons() { |
|
56 | 56 | return $this->addToProperty("class", "icons"); |
57 | 57 | } |
58 | 58 | |
59 | - public function setVertical(){ |
|
59 | + public function setVertical() { |
|
60 | 60 | return $this->addToProperty("class", "vertical"); |
61 | 61 | } |
62 | 62 | |
63 | - public function setLabeled(){ |
|
63 | + public function setLabeled() { |
|
64 | 64 | return $this->addToProperty("class", "labeled icon"); |
65 | 65 | } |
66 | 66 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
89 | 89 | */ |
90 | 90 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
91 | - foreach ( $this->content as $element ) { |
|
91 | + foreach ($this->content as $element) { |
|
92 | 92 | $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
93 | 93 | } |
94 | 94 | return $this; |
@@ -14,13 +14,13 @@ |
||
14 | 14 | $this->setClass($this->_baseClass); |
15 | 15 | } |
16 | 16 | |
17 | - public function setCircular(){ |
|
17 | + public function setCircular() { |
|
18 | 18 | return $this->addToProperty("class", "circular"); |
19 | 19 | } |
20 | 20 | |
21 | - public function asAvatar($caption=NULL){ |
|
22 | - if(isset($caption)) |
|
23 | - $this->wrap("",$caption); |
|
21 | + public function asAvatar($caption=NULL) { |
|
22 | + if (isset($caption)) |
|
23 | + $this->wrap("", $caption); |
|
24 | 24 | return $this->addToProperty("class", "avatar"); |
25 | 25 | } |
26 | 26 | } |
27 | 27 | \ No newline at end of file |