Skip to content

Commit b77ba22

Browse files
committed
phpMv-UI link in doc
1 parent b889042 commit b77ba22

File tree

9 files changed

+50
-20
lines changed

9 files changed

+50
-20
lines changed

Ajax/semantic/html/elements/HtmlButtonGroups.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
/**
1111
* Semantic UI Buttongroups component
12+
* @see http://phpmv-ui.kobject.net/index/direct/main/50
1213
* @see http://semantic-ui.com/elements/button.html
1314
* @author jc
1415
* @version 1.001

Ajax/semantic/html/elements/HtmlContainer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use Ajax\semantic\html\base\traits\TextAlignmentTrait;
77
/**
88
* Semantic UI container component
9+
* @see http://phpmv-ui.kobject.net/index/direct/main/34
910
* @see http://semantic-ui.com/elements/container.html#/definition
1011
* @author jc
1112
* @version 1.001

Ajax/semantic/html/elements/HtmlDivider.php

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
/**
88
* Semantic UI divider component
9+
* @see http://phpmv-ui.kobject.net/index/direct/main/42
910
* @see http://semantic-ui.com/elements/divider.html
1011
* @author jc
1112
* @version 1.001
@@ -19,44 +20,47 @@ public function __construct($identifier, $content="", $tagName="div") {
1920

2021
/**
2122
* vertical divider
22-
* @return \Ajax\semantic\html\elements\HtmlDivider
23+
* @return HtmlDivider
2324
*/
2425
public function setVertical() {
2526
return $this->addToPropertyCtrl("class", "vertical", array ("vertical","horizontal" ));
2627
}
2728

2829
/**
2930
* horizontal divider
30-
* @return \Ajax\semantic\html\elements\HtmlDivider
31+
* @return HtmlDivider
3132
*/
3233
public function setHorizontal() {
3334
return $this->addToPropertyCtrl("class", "horizontal", array ("vertical","horizontal" ));
3435
}
3536

3637
/**
3738
* hide the divider
38-
* @return \Ajax\semantic\html\elements\HtmlDivider
39+
* @return HtmlDivider
3940
*/
4041
public function setHidden() {
4142
return $this->addToProperty("class", "hidden");
4243
}
4344

4445
/**
4546
* fitted, without any space above or below it
46-
* @return \Ajax\semantic\html\elements\HtmlDivider
47+
* @return HtmlDivider
4748
*/
4849
public function setFitted() {
4950
return $this->addToProperty("class", "fitted");
5051
}
5152

5253
/**
5354
*
54-
* @return \Ajax\semantic\html\elements\HtmlDivider
55+
* @return HtmlDivider
5556
*/
5657
public function asHeader() {
5758
return $this->addToProperty("class", "header");
5859
}
5960

61+
/**
62+
* @return HtmlDivider
63+
*/
6064
public function setIgnored(){
6165
return $this->addToProperty("class", "ignored");
6266
}

Ajax/semantic/html/elements/HtmlFlag.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
/**
99
* Semantic Flag component
10+
* @see http://phpmv-ui.kobject.net/index/direct/main/64
1011
* @see http://semantic-ui.com/elements/flag.html
1112
* @author jc
1213
* @version 1.001

Ajax/semantic/html/elements/HtmlHeader.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99
use Ajax\semantic\html\elements\html5\HtmlImg;
1010
use Ajax\semantic\html\base\traits\AttachedTrait;
1111

12+
/**
13+
* Semantic Header component
14+
* @see http://phpmv-ui.kobject.net/index/direct/main/43
15+
* @see http://semantic-ui.com/elements/header.html
16+
* @author jc
17+
* @version 1.001
18+
*/
1219
class HtmlHeader extends HtmlSemDoubleElement {
1320
use TextAlignmentTrait,AttachedTrait;
1421
protected $image;

Ajax/semantic/html/elements/HtmlIcon.php

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
/**
88
* Semantic Icon component
9+
* @see http://phpmv-ui.kobject.net/index/direct/main/44
910
* @see http://semantic-ui.com/elements/icon.html
1011
* @author jc
1112
* @version 1.001
@@ -25,7 +26,7 @@ public function getIcon() {
2526
/**
2627
* sets the icon
2728
* @param string $icon
28-
* @return \Ajax\semantic\html\HtmlIcon
29+
* @return HtmlIcon
2930
*/
3031
public function setIcon($icon) {
3132
if (isset($this->_icon)) {
@@ -39,7 +40,7 @@ public function setIcon($icon) {
3940
/**
4041
* adds an icon in icon element
4142
* @param string $icon
42-
* @return \Ajax\semantic\html\HtmlIcon
43+
* @return HtmlIcon
4344
*/
4445
public function addToIcon($icon) {
4546
$this->addToProperty("class", $icon);
@@ -48,15 +49,15 @@ public function addToIcon($icon) {
4849

4950
/**
5051
* Icon used as a simple loader
51-
* @return \Ajax\semantic\html\HtmlIcon
52+
* @return HtmlIcon
5253
*/
5354
public function asLoader() {
5455
return $this->addToProperty("class", "loading");
5556
}
5657

5758
/**
5859
* An icon can be fitted, without any space to the left or right of it.
59-
* @return \Ajax\semantic\html\HtmlIcon
60+
* @return HtmlIcon
6061
*/
6162
public function setFitted() {
6263
return $this->addToProperty("class", "fitted");
@@ -65,7 +66,7 @@ public function setFitted() {
6566
/**
6667
*
6768
* @param string $sens horizontally or vertically
68-
* @return \Ajax\semantic\html\HtmlIcon
69+
* @return HtmlIcon
6970
*/
7071
public function setFlipped($sens="horizontally") {
7172
return $this->addToProperty("class", "flipped " . $sens);
@@ -74,7 +75,7 @@ public function setFlipped($sens="horizontally") {
7475
/**
7576
*
7677
* @param string $sens clockwise or counterclockwise
77-
* @return \Ajax\semantic\html\HtmlIcon
78+
* @return HtmlIcon
7879
*/
7980
public function setRotated($sens="clockwise") {
8081
return $this->addToProperty("class", "rotated " . $sens);
@@ -103,7 +104,7 @@ public function setOutline() {
103104
/**
104105
*
105106
* @param string $inverted
106-
* @return \Ajax\semantic\html\HtmlIcon
107+
* @return HtmlIcon
107108
*/
108109
public function setBordered($inverted=false) {
109110
$invertedStr="";
@@ -114,7 +115,7 @@ public function setBordered($inverted=false) {
114115

115116
/**
116117
*
117-
* @return \Ajax\semantic\html\HtmlIcon
118+
* @return HtmlIcon
118119
*/
119120
public function toCorner() {
120121
return $this->addToProperty("class", "corner");

Ajax/semantic/html/elements/HtmlIconGroups.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
/**
1010
* Semantic Icons group component
11+
* @see http://phpmv-ui.kobject.net/index/direct/main/72
1112
* @see http://semantic-ui.com/elements/icon.html#/definition
1213
* @author jc
1314
* @version 1.001

Ajax/semantic/html/elements/HtmlImage.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
use Ajax\semantic\html\base\constants\Size;
77
use Ajax\semantic\html\elements\html5\HtmlImg;
88

9+
/**
10+
* Semantic Image component
11+
* @see http://phpmv-ui.kobject.net/index/direct/main/55
12+
* @see http://semantic-ui.com/elements/icon.html#/definition
13+
* @author jc
14+
* @version 1.001
15+
*/
916
class HtmlImage extends HtmlSemDoubleElement {
1017

1118
public function __construct($identifier, $src="", $alt="", $size=NULL) {

Ajax/semantic/html/elements/HtmlLabel.php

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99
use Ajax\semantic\html\elements\html5\HtmlImg;
1010
use Ajax\semantic\html\base\traits\HasTimeoutTrait;
1111

12+
/**
13+
* Semantic Label component
14+
* @see http://phpmv-ui.kobject.net/index/direct/main/46
15+
* @see http://semantic-ui.com/elements/label.html
16+
* @author jc
17+
* @version 1.001
18+
*/
1219
class HtmlLabel extends HtmlSemDoubleElement {
1320
use LabeledIconTrait,HasTimeoutTrait;
1421

@@ -22,7 +29,7 @@ public function __construct($identifier, $caption="", $icon=NULL, $tagName="div"
2229
/**
2330
*
2431
* @param string $value
25-
* @return \Ajax\semantic\html\elements\HtmlLabel
32+
* @return HtmlLabel
2633
*/
2734
public function setPointing($value=Direction::NONE) {
2835
if($value==="left" || $value==="right")
@@ -34,7 +41,7 @@ public function setPointing($value=Direction::NONE) {
3441
/**
3542
*
3643
* @param string $side
37-
* @return \Ajax\semantic\html\elements\HtmlLabel
44+
* @return HtmlLabel
3845
*/
3946
public function toCorner($side="left") {
4047
return $this->addToPropertyCtrl("class", $side . " corner", array ("right corner","left corner" ));
@@ -50,7 +57,7 @@ public function setFloating(){
5057

5158
/**
5259
*
53-
* @return \Ajax\semantic\html\elements\HtmlLabel
60+
* @return HtmlLabel
5461
*/
5562
public function asTag() {
5663
return $this->addToProperty("class", "tag");
@@ -70,7 +77,7 @@ public function setBasic() {
7077
* @param string $src
7178
* @param string $alt
7279
* @param boolean $before
73-
* @return \Ajax\semantic\html\elements\html5\HtmlImg
80+
* @return HtmlImg
7481
*/
7582
public function addEmphasisImage($src, $alt="", $before=true) {
7683
$this->addToProperty("class", "image");
@@ -82,7 +89,7 @@ public function addEmphasisImage($src, $alt="", $before=true) {
8289
* @param string $src
8390
* @param string $alt
8491
* @param boolean $before
85-
* @return \Ajax\semantic\html\elements\html5\HtmlImg
92+
* @return HtmlImg
8693
*/
8794
public function addAvatarImage($src, $alt="", $before=true) {
8895
$img=$this->addImage($src,$alt,$before);
@@ -96,7 +103,7 @@ public function addAvatarImage($src, $alt="", $before=true) {
96103
* @param string $src
97104
* @param string $alt
98105
* @param boolean $before
99-
* @return \Ajax\semantic\html\elements\html5\HtmlImg
106+
* @return HtmlImg
100107
*/
101108
public function addImage($src, $alt="", $before=true) {
102109
$img=new HtmlImg("image-" . $this->identifier, $src, $alt);
@@ -108,7 +115,7 @@ public function addImage($src, $alt="", $before=true) {
108115
/**
109116
*
110117
* @param string $detail
111-
* @return \Ajax\common\html\HtmlDoubleElement
118+
* @return HtmlDoubleElement
112119
*/
113120
public function addDetail($detail) {
114121
$div=new HtmlSemDoubleElement("detail-" . $this->identifier, $this->tagName,"detail");

0 commit comments

Comments
 (0)