Skip to content

Commit

Permalink
added properties for QRadioButton class
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosdsanchez authored and mikeho committed Aug 11, 2010
1 parent acaad9d commit 0ec1c27
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions includes/qcodo/_core/qform/QRadioButton.class.php
@@ -1,12 +1,15 @@
<?php
// This class will render an HTML Radio button.
// * "Text" is used to display text that is displayed next to the radio. The text is rendered as
// an html "Label For" the radio.
// * "TextAlign" specifies if "Text" should be displayed to the left or to the right of the radio.
// * "Checked" specifices whether or not the radio is selected
// * "GroupName" assigns the radio button into a radio button group (optional) so that no more than
// one radio in that group may be selected at a time.

/**
* This class will render an HTML Radio button.
*
* @package Controls
*
* @property string $Text is used to display text that is displayed next to the radio. The text is rendered as an html "Label For" the radio
* @property string $TextAlign specifies if "Text" should be displayed to the left or to the right of the radio.
* @property string $GroupName assigns the radio button into a radio button group (optional) so that no more than one radio in that group may be selected at a time.
* @property boolean $HtmlEntities
* @property boolean $Checked specifices whether or not the radio is selected
*/
class QRadioButton extends QControl {
///////////////////////////
// Private Member Variables
Expand Down

0 comments on commit 0ec1c27

Please sign in to comment.