Completed
Push — master ( 189ad5...73e21a )
by Jean-Christophe
04:04
created

HtmlButton::setActive()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
c 3
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Ajax\semantic\html\elements;
4
5
use Ajax\semantic\html\base\HtmlSemDoubleElement;
6
use Ajax\semantic\html\base\traits\LabeledIconTrait;
7
use Ajax\semantic\html\base\constants\Emphasis;
8
use Ajax\semantic\html\base\constants\Social;
9
use Ajax\semantic\html\elements\html5\HtmlLink;
10
11
/**
12
 * Semantic Button component
13
 * @see http://semantic-ui.com/elements/button.html
14
 * @author jc
15
 * @version 1.001
16
 */
17
class HtmlButton extends HtmlSemDoubleElement {
18
	use LabeledIconTrait;
19
20
	/**
21
	 * Constructs an HTML Semantic button
22
	 * @param string $identifier HTML id
23
	 * @param string $value value of the Button
24
	 * @param string $cssStyle btn-default, btn-primary...
25
	 * @param string $onClick JS Code for click event
26
	 */
27 View Code Duplication
	public function __construct($identifier, $value="", $cssStyle=null, $onClick=null) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
28
		parent::__construct($identifier, "button", "ui button");
29
		$this->content=$value;
30
		if (isset($cssStyle)) {
31
			$this->setStyle($cssStyle);
32
		}
33
		if (isset($onClick)) {
34
			$this->onClick($onClick);
35
		}
36
	}
37
38
	/**
39
	 * Set the button value
40
	 * @param string $value
41
	 * @return \Ajax\semantic\html\HtmlButton
42
	 */
43
	public function setValue($value) {
44
		$this->content=$value;
45
		return $this;
46
	}
47
48
	/**
49
	 * define the button style
50
	 * @param string|int $cssStyle
51
	 * @return \Ajax\semantic\html\HtmlButton default : ""
52
	 */
53
	public function setStyle($cssStyle) {
54
		return $this->addToProperty("class", $cssStyle);
55
	}
56
57
	public function setFocusable($value=true) {
58
		if ($value === true)
59
			$this->setProperty("tabindex", "0");
60
		else {
61
			$this->removeProperty("tabindex");
62
		}
63
		return $this;
64
	}
65
66
	public function setAnimated($content, $animation="") {
67
		$this->setTagName("div");
68
		$this->addToProperty("class", "animated " . $animation);
69
		$visible=new HtmlSemDoubleElement("visible-" . $this->identifier, "div");
70
		$visible->setClass("visible content");
71
		$visible->setContent($this->content);
72
		$hidden=new HtmlSemDoubleElement("hidden-" . $this->identifier, "div");
73
		$hidden->setClass("hidden content");
74
		$hidden->setContent($content);
75
		$this->content=array ($visible,$hidden );
76
		return $hidden;
77
	}
78
79
	/**
80
	 *
81
	 * @param string|HtmlIcon $icon
82
	 * @return \Ajax\semantic\html\elements\HtmlButton
83
	 */
84
	public function asIcon($icon) {
85
		$iconO=$icon;
86
		if (\is_string($icon)) {
87
			$iconO=new HtmlIcon("icon-" . $this->identifier, $icon);
88
		}
89
		$this->addToProperty("class", "icon");
90
		$this->content=$iconO;
91
		return $this;
92
	}
93
94
	public function asSubmit() {
95
		$this->setProperty("type", "submit");
96
		return $this->setTagName("button");
97
	}
98
99
	/**
100
	 * Add and return a button label
101
	 * @param string $caption
102
	 * @param string $before
103
	 * @return \Ajax\semantic\html\elements\HtmlLabel
104
	 */
105
	public function addLabel($caption, $before=false) {
106
		$this->tagName="div";
107
		$this->addToProperty("class", "labeled");
108
		$this->content=new HtmlButton("button-" . $this->identifier, $this->content);
109
		$this->content->setTagName("div");
110
		$label=new HtmlLabel("label-" . $this->identifier, $caption, "a");
111
		$label->setBasic();
112
		$this->addContent($label, $before);
0 ignored issues
show
Bug introduced by
It seems like $before defined by parameter $before on line 105 can also be of type string; however, Ajax\common\html\HtmlDoubleElement::addContent() does only seem to accept boolean, maybe add an additional type check?

This check looks at variables that have been passed in as parameters and are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
113
		return $label;
114
	}
115
116
	/*
117
	 * (non-PHPdoc)
118
	 * @see \Ajax\common\html\BaseHtml::fromArray()
119
	 */
120
	public function fromArray($array) {
121
		$array=parent::fromArray($array);
122
		foreach ( $array as $key => $value ) {
123
			$this->setProperty($key, $value);
124
		}
125
		return $array;
126
	}
127
128
	/**
129
	 * show it is currently the active user selection
130
	 * @return \Ajax\semantic\html\elements\HtmlButton
131
	 */
132
	public function setActive() {
133
		return $this->addToProperty("class", "active");
134
	}
135
136
	/**
137
	 * hint towards a positive consequence
138
	 * @return \Ajax\semantic\html\elements\HtmlButton
139
	 */
140
	public function setPositive() {
141
		return $this->addToProperty("class", "positive");
142
	}
143
144
	/**
145
	 * hint towards a negative consequence
146
	 * @return \Ajax\semantic\html\elements\HtmlButton
147
	 */
148
	public function setNegative() {
149
		return $this->addToProperty("class", "negative");
150
	}
151
152
	/**
153
	 * formatted to toggle on/off
154
	 * @return \Ajax\semantic\html\elements\HtmlButton
155
	 */
156
	public function setToggle() {
157
		return $this->addToProperty("class", "toggle");
158
	}
159
160
	/**
161
	 *
162
	 * @return \Ajax\semantic\html\elements\HtmlButton
163
	 */
164
	public function setCircular() {
165
		return $this->addToProperty("class", "circular");
166
	}
167
168
	/**
169
	 * button is less pronounced
170
	 * @return \Ajax\semantic\html\elements\HtmlButton
171
	 */
172
	public function setBasic() {
173
		return $this->addToProperty("class", "basic");
174
	}
175
176
	public function setEmphasis($value) {
177
		return $this->addToPropertyCtrl("class", $value, Emphasis::getConstants());
178
	}
179
180
	public function setLoading() {
181
		return $this->addToProperty("class", "loading");
182
	}
183
184
	public static function social($identifier, $social, $value=NULL) {
185
		if ($value === NULL)
186
			$value=\ucfirst($social);
187
		$return=new HtmlButton($identifier, $value);
188
		$return->addIcon($social);
189
		return $return->addToPropertyCtrl("class", $social, Social::getConstants());
190
	}
191
192
	public static function labeled($identifier, $value, $icon, $before=true) {
193
		$result=new HtmlButton($identifier, $value);
194
		$result->addIcon($icon, $before, true);
195
		return $result;
196
	}
197
198
	public static function icon($identifier, $icon) {
199
		$result=new HtmlButton($identifier);
200
		$result->asIcon($icon);
201
		return $result;
202
	}
203
204
	public function asLink($href=NULL) {
205
		$lnk=new HtmlLink("lnk-".$this->identifier,$href,$this->content);
206
		$this->content=$lnk;
207
		return $this;
208
	}
209
}