Skip to content

Commit

Permalink
css_class hinzugefügt
Browse files Browse the repository at this point in the history
  • Loading branch information
omphteliba authored Jan 16, 2017
1 parent e9fe1c9 commit c2087ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion classes/value/class.xform.checkbox.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function enterObject()

function getDescription()
{
return 'checkbox -> Beispiel: checkbox|name|label|Values(0,1)|default clicked (0/1)|[no_db]';
return 'checkbox -> Beispiel: checkbox|name|label|Values(0,1)|default clicked (0/1)|[no_db]|cssclassname';
}

function getDefinitions()
Expand All @@ -68,6 +68,7 @@ function getDefinitions()
'values' => array( 'type' => 'text', 'label' => 'Werte (0,1) (nicht angeklickt,angeklickt)', 'default' => '0,1'),
'default' => array( 'type' => 'boolean', 'label' => 'Defaultstatus', 'default' => 0),
'no_db' => array( 'type' => 'no_db', 'label' => 'Datenbank', 'default' => 0),
'css_class' => array('type' => 'text', 'label' => 'cssclassname'),
),
'description' => 'Eine Checkbox mit fester Definition.',
'dbtype' => 'varchar(255)',
Expand Down

1 comment on commit c2087ac

@omphteliba
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

resolves yakamara#341

Please sign in to comment.