NAME

Form::Factory::Control::Button - The button control

VERSION

version 0.011

SYNOPSIS

has_control a_button => (
    control => 'button',
    options => {
        label => 'My Button',
    },
);

DESCRIPTION

A control representing a submit button. This control implements Form::Factory::Control, Form::Factory::Control::Role::BooleanValue, Form::Factory::Control::Role::Labeled, Form::Factory::Control::Role::ScalarValue.

ATTRIBUTES

true_value

See Form::Factory::Control::Role::BooleanValue. By default, this value is set to the label. If you change this to something else, the button might not work correctly anymore.

value

See Form::Factory::Control::Role::Value.

METHODS

default_isa

Boolean values default to Bool.

current_value

The current value expects the "true_value" to be passed to set the "is_true" in Form::Factory::Control::Role::BooleanValue attribute. This method returns either the "true_value" or "false_value" in Form::Factory::Control::Role::BooleanValue.

If the control is neither true nor false, it returns undef.

has_current_value

If the value is true or false, it has a current value. Otherwise, it does not.

AUTHOR

Andrew Sterling Hanenkamp <hanenkamp@cpan.org>

COPYRIGHT AND LICENSE

Copyright 2009 Qubling Software LLC.

This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.