phpMv  -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
HtmlButton Class Reference

Twitter Bootstrap Button component. More...

+ Inheritance diagram for HtmlButton:
+ Collaboration diagram for HtmlButton:

Public Member Functions

 __construct ($identifier, $value="", $cssStyle=null, $onClick=null)
 Constructs an HTML Bootstrap button. More...
 
 setValue ($value)
 Set the button value. More...
 
 setStyle ($cssStyle)
 define the button style avaible values : "btn-default","btn-primary","btn-success","btn-info","btn-warning","btn-danger" More...
 
 setSize ($size)
 define the button size available values : "btn-lg","","btn-sm","btn-xs" More...
 
 setActive ()
 Sets the "active" css class to the button. More...
 
 setDisabled ()
 Disables the button. More...
 
 setToggled ()
 
 run (JsUtils $js)
 
 fromArray ($array)
 
- Public Member Functions inherited from HtmlBsDoubleElement
 addBadge ($caption, $leftSeparator=" ")
 
 addLabel ($caption, $style="label-default", $leftSeparator=" ")
 
 addGlyph ($glyphicon, $before=true)
 
 wrapContentWithGlyph ($glyphBefore, $glyphAfter="")
 
- Public Member Functions inherited from HtmlDoubleElement
 __construct ($identifier, $tagName="p")
 
 setContent ($content)
 
 getContent ()
 
 addContent ($content, $before=false)
 
 run (JsUtils $js)
 
 setValue ($value)
 
 wrapContent ($before, $after="")
 
 wrapWith (HtmlDoubleElement $container)
 Wraps the element with a container. More...
 
 getContentInstances ($class)
 
 asLink ($href=NULL, $target=NULL)
 Transforms the element into a link. More...
 
 getTextContent ()
 
 asEditable (HtmlFormField $field, $asForm=false, $setValueProperty="val()")
 
- Public Member Functions inherited from HtmlSingleElement
 __construct ($identifier, $tagName="br")
 
 setClass ($classNames)
 
 addClass ($classNames)
 
 setRole ($value)
 
 setTitle ($value)
 
 setStyle ($value)
 
 run (JsUtils $js)
 
 fromArray ($array)
 
 setSize ($size)
 
- Public Member Functions inherited from BaseHtml
 run (JsUtils $js)
 
 getTagName ()
 
 setTagName ($tagName)
 
 fromArray ($array)
 
 fromDatabaseObjects ($objects, $function)
 
 fromDatabaseObject ($object, $function)
 
 wrap ($before, $after="")
 
 getElementById ($identifier, $elements)
 
 getBsComponent ()
 
 setBsComponent ($bsComponent)
 
 compile (JsUtils $js=NULL, &$view=NULL)
 
 setDraggable ($attr="id", $dropZone=null, $parameters=[])
 Sets the element draggable, and eventualy defines the dropzone (HTML5 drag and drop) More...
 
 asDropZone ($jsCallback="", $jqueryDone="append", $parameters=[])
 Declares the element as a drop zone (HTML5 drag and drop) More...
 
 asFileDropZone ($responseElement=null, $url=null, $progress=null, $jsCallback="", $parameters=[])
 Declares the element as a drop zone for file uploading (HTML5 drag and drop) More...
 
 __toString ()
 
 onPostCompile ($callback)
 
 onPreCompile ($callback)
 
- Public Member Functions inherited from BaseWidget
 __construct ($identifier)
 
 getIdentifier ()
 
 setIdentifier ($identifier)
 
 getLibraryId ()
 
 setLibraryId ($_libraryId)
 

Additional Inherited Members

- Protected Member Functions inherited from HtmlDoubleElement
 _getContentInstances ($class, $content)
 
 compile_once (\Ajax\JsUtils $js=NULL, &$view=NULL)
 {} More...
 
- Protected Member Functions inherited from BaseHtml
 getTemplate (JsUtils $js=NULL, $view=null)
 
 ctrl ($name, $value, $typeCtrl)
 
 setMemberCtrl (&$name, $value, $typeCtrl)
 
 addToMemberUnique (&$name, $value, $typeCtrl, $separator=" ")
 
 addToMemberCtrl (&$name, $value, $typeCtrl, $separator=" ")
 
 addToMember (&$name, $value, $separator=' ')
 
 removeOldValues (&$oldValue, $allValues)
 
 _getElementBy ($callback, $elements)
 
 setWrapBefore ($wrapBefore)
 
 setWrapAfter ($wrapAfter)
 
 compile_once (JsUtils $js=NULL, &$view=NULL)
 
- Protected Member Functions inherited from BaseWidget
 cleanIdentifier ($id)
 
- Protected Attributes inherited from HtmlDoubleElement
 $content
 
 $wrapContentBefore = ""
 
 $wrapContentAfter = ""
 
 $_editableContent
 
- Protected Attributes inherited from BaseHtml
 $_template
 
 $tagName
 
 $_wrapBefore = array()
 
 $_wrapAfter = array()
 
 $_bsComponent
 
 $_compiled = false
 
 $_runned = false
 
 $_postCompile
 
 $_preCompile
 
- Protected Attributes inherited from BaseWidget
 $identifier
 
 $_identifier
 
 $_libraryId
 
 $_self
 

Detailed Description

Twitter Bootstrap Button component.

See also
http://getbootstrap.com/css/#buttons
Author
jc
Version
1.001

Definition at line 15 of file HtmlButton.php.

Constructor & Destructor Documentation

◆ __construct()

__construct (   $identifier,
  $value = "",
  $cssStyle = null,
  $onClick = null 
)

Constructs an HTML Bootstrap button.

Parameters
string$identifierHTML id
string$valuevalue of the Button
string$cssStylebtn-default, btn-primary...
string$onClickJS Code for click event

Definition at line 24 of file HtmlButton.php.

Member Function Documentation

◆ fromArray()

fromArray (   $array)

Definition at line 113 of file HtmlButton.php.

◆ run()

run ( JsUtils  $js)

Definition at line 98 of file HtmlButton.php.

◆ setActive()

setActive ( )

Sets the "active" css class to the button.

Returns

Definition at line 74 of file HtmlButton.php.

◆ setDisabled()

setDisabled ( )

Disables the button.

Returns

Definition at line 84 of file HtmlButton.php.

◆ setSize()

setSize (   $size)

define the button size available values : "btn-lg","","btn-sm","btn-xs"

Parameters
string | int$size
Returns
default : ""

Definition at line 63 of file HtmlButton.php.

◆ setStyle()

setStyle (   $cssStyle)

define the button style avaible values : "btn-default","btn-primary","btn-success","btn-info","btn-warning","btn-danger"

Parameters
string | int$cssStyle
Returns
default : "btn-default"

Definition at line 53 of file HtmlButton.php.

◆ setToggled()

setToggled ( )

Definition at line 90 of file HtmlButton.php.

◆ setValue()

setValue (   $value)

Set the button value.

Parameters
string$value
Returns

Definition at line 42 of file HtmlButton.php.


The documentation for this class was generated from the following file: