Starsfield

Categories

Component ID

2629520

Component name

Starsfield

Component type

module

Maintenance status

Development status

Component security advisory coverage

not-covered

Component created

Component changed

Component body

This is a simple five star form element. It will generate new form element type (starsfield) that can be used alongside other existing fields in form generation array.
Example:

// ...
$form['rating_quality'] = array(
     "#type" => "starsfield",
     "#title" => t("Quality"),
     "#default_value" => 1
);
$form['rating_price'] = array(
     "#type" => "starsfield",
     "#title" => t("Price"),
     "#default_value" => 1
);
$form['rating_performance'] = array(
     "#type" => "starsfield",
     "#title" => t("Performance"),
     "#default_value" => 1
);
// ...