1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
  
     | 
    
      NAME
    HTML::FormFu::Model::DBIC - Integrate HTML::FormFu with DBIx::Class
SYNOPSIS
    Example of typical use in a Catalyst controller:
        sub edit : Chained {
            my ( $self, $c ) = @_;
        
            my $form = $c->stash->{form};
            my $book = $c->stash->{book};
        
            if ( $form->submitted_and_valid ) {
            
                # update dbic row with submitted values from form
            
                $form->model->update( $book );
            
                $c->response->redirect( $c->uri_for('view', $book->id) );
                return;
            }
            elsif ( !$form->submitted ) {
            
                # use dbic row to set form's default values
            
                $form->model->default_values( $book );
            }
        
            return;
        }
SETUP
    For the form object to be able to access your DBIx::Class schema, it
    needs to be placed on the form stash, with the name "schema".
    This is easy if you're using Catalyst-Controller-HTML-FormFu, as you can
    set this up to happen in your Catalyst app's config file.
    For example, if your model is named "MyApp::Model::Corp", you would set
    this (in Config::General format):
        <Controller::HTML::FormFu>
            <model_stash>
                schema Corp
            </model_stash>
        </Controller::HTML::FormFu>
    Or if your app's config file is in YAML format:
        'Controller::HTML::FormFu':
            model_stash:
                schema: Corp
METHODS
  default_values
    Arguments: $dbic_row, [\%config]
    Return Value: $form
        $form->model->default_values( $dbic_row );
    Set a form's default values from the database, to allow a user to edit
    them.
  update
    Arguments: [$dbic_row], [\%config]
    Return Value: $dbic_row
        $form->model->update( $dbic_row );
    Update the database with the submitted form values.
  create
    Arguments: [\%config]
    Return Value: $dbic_row
        my $dbic_row = $form->model->create( {resultset => 'Book'} );
    Like "update", but doesn't require a $dbic_row argument.
    You need to ensure the DBIC schema is available on the form stash - see
    "SYNOPSIS" for an example config.
    The "resultset" must be set either in the method arguments, or the form
    or block's "model_config".
    An example of setting the ResultSet name on a Form:
        ---
        model_config:
          resultset: FooTable
    
        elements:
          # [snip]
  options_from_model
    Populates a multi-valued field with values from the database.
    This method should not be called directly, but is called for you during
    "$form->process" by fields that inherit from
    HTML::FormFu::Element::_Group. This includes:
    HTML::FormFu::Element::Select
    HTML::FormFu::Element::Checkboxgroup
    HTML::FormFu::Element::Radiogroup
    HTML::FormFu::Element::ComboBox
    To use you must set the appropriate "resultset" on the element
    "model_config":
        element:
          - type: Select
            name: foo
            model_config:
              resultset: TableClass
BUILDING FORMS
  single table
    To edit the values in a row with no related rows, the field names simply
    have to correspond to the database column names.
    For the following DBIx::Class schema:
        package MySchema::Book;
        use base 'DBIx::Class';
    
        __PACKAGE__->load_components(qw/ Core /);
    
        __PACKAGE__->table("book");
    
        __PACKAGE__->add_columns(
            id     => { data_type => "INTEGER" },
            title  => { data_type => "TEXT" },
            author => { data_type => "TEXT" },
            blurb  => { data_type => "TEXT" },
        );
    
        __PACKAGE__->set_primary_key("id");
    
        1;
    A suitable form for this might be:
        elements:
          - type: Text
            name: title
      
          - type: Text
            name: author
      
          - type: Textarea
            name: blurb
  might_have and has_one relationships
    Set field values from a related row with a "might_have" or "has_one"
    relationship by placing the fields within a Block (or any element that
    inherits from Block, such as Fieldset) with its "nested_name" in
    HTML::FormFu set to the relationship name.
    For the following DBIx::Class schemas:
        package MySchema::Book;
        use base 'DBIx::Class';
    
        __PACKAGE__->load_components(qw/ Core /);
    
        __PACKAGE__->table("book");
    
        __PACKAGE__->add_columns(
            id    => { data_type => "INTEGER" },
            title => { data_type => "TEXT" },
        );
    
        __PACKAGE__->set_primary_key("id");
    
        __PACKAGE__->might_have( review => 'MySchema::Review', 'book' );
    
        1;
        package MySchema::Review;
        use base 'DBIx::Class';
    
        __PACKAGE__->load_components(qw/ Core /);
    
        __PACKAGE__->table("review");
    
        __PACKAGE__->add_columns(
            id          => { data_type => "INTEGER" },
            book        => { data_type => "INTEGER", is_nullable => 1 },
            review_text => { data_type => "TEXT" },
        );
    
        __PACKAGE__->set_primary_key("book");
    
        __PACKAGE__->belongs_to( book => 'MySchema::Book' );
    
        1;
    A suitable form for this would be:
        elements:
          - type: Text
            name: title
      
          - type: Block
            nested_name: review
            elements:
              - type: Textarea
                name: review_text
    For "might_have" and "has_one" relationships, you generally shouldn't
    need to have a field for the related table's primary key, as DBIx::Class
    will handle retrieving the correct row automatically.
    You can also set a "has_one" or "might_have" relationship using a multi
    value field like Select.
        elements:
          - type: Text
            name: title
      
          - type: Select
            nested: review
            model_config:
              resultset: Review
    This will load all reviews into the select field. If you select a review
    from that list, a current relationship to a review is removed and the
    new one is added. This requires that the primary key of the "Review"
    table and the foreign key do not match.
  has_many and many_to_many relationships
    The general principle is the same as for "might_have" and "has_one"
    above, except you should use a Repeatable element instead of a Block,
    and it needs to contain a Hidden field corresponding to the foreign key.
    The Repeatable block's nested_name must be set to the name of the
    relationship.
    The Repeable block's increment_field_names must be true (which is the
    default value).
    The Repeable block's counter_name must be set to the name of a Hidden
    field, which is placed outside of the Repeatable block. This field is
    used to store a count of the number of repetitions of the Repeatable
    block were created. When the form is submitted, this value is used
    during "$form->process" to ensure the form is rebuilt with the correct
    number of repetitions.
    For the following DBIx::Class schemas:
        package MySchema::Book;
        use base 'DBIx::Class';
    
        __PACKAGE__->load_components(qw/ Core /);
    
        __PACKAGE__->table("book");
    
        __PACKAGE__->add_columns(
            id    => { data_type => "INTEGER" },
            title => { data_type => "TEXT" },
        );
    
        __PACKAGE__->set_primary_key("id");
    
        __PACKAGE__->has_many( review => 'MySchema::Review', 'book' );
    
        1;
        package MySchema::Review;
        use base 'DBIx::Class';
    
        __PACKAGE__->load_components(qw/ Core /);
    
        __PACKAGE__->table("review");
    
        __PACKAGE__->add_columns(
            book        => { data_type => "INTEGER" },
            review_text => { data_type => "TEXT" },
        );
    
        __PACKAGE__->set_primary_key("book");
    
        __PACKAGE__->belongs_to( book => 'MySchema::Book' );
    
        1;
    A suitable form for this would be:
        elements:
          - type: Text
            name: title
      
          - type: Hidden
            name: review_count
      
          - type: Repeatable
            nested_name: review
            counter_name: review_count
            elements:
              - type: Hidden
                name: book
          
              - type: Textarea
                name: review_text
  many_to_many selection
    To select / deselect rows from a "many_to_many" relationship, you must
    use a multi-valued element, such as a Checkboxgroup or a Select with
    multiple set.
    The field's name must be set to the name of the "many_to_many"
    relationship.
    default_column
        If you want to search / associate the related table by a column
        other it's primary key, set
        "$field->model_config->{default_column}".
            ---
            element:
                - type: Checkboxgroup
                  name: authors
                  model_config:
                    default_column: foo
        If you want to set columns on the link table you can do so if you
        add a "link_values" attribute to "model_config":
            ---
            element:
                - type: Checkboxgroup
                  name: authors
                  model_config:
                    link_values:
                      foo: bar
        The default implementation will first remove all related objects and
        set the new ones (see
        <http://search.cpan.org/perldoc?DBIx::Class::Relationship::Base#set_
        $rel>). If you want to add the selected objects to the current set
        of objects set "additive" in the "model_config".
            ---
            element:
                - type: Checkboxgroup
                  name: authors
                  model_config:
                    additive: 1
                    options_from_model: 0
        (<options_from_model> is set to 0 because this "options_from_model"
        will try to fetch all objects from the result class "Authors" if
        "model_config" is specified without a "resultset" attribute.)
COMMON ARGUMENTS
    The following items are supported in the optional "config" hash-ref
    argument to the methods default_values, update and create.
    base
        If you want the method to process a particular Block element, rather
        than the whole form, you can pass the element as a "base" argument.
            $form->default_values(
                $row,
                {
                    base => $formfu_element,
                },
            );
    nested_base
        If you want the method to process a particular Block element by
        name, you can pass the name as an argument.
            $form->default_values(
                $row,
                {
                    nested_base => 'foo',
                }'
            );
CONFIGURATION
  Config options for fields
    The following items are supported as "model_config" options on form
    fields.
    accessor
        If set, "accessor" will be used as a method-name accessor on the
        "DBIx::Class" row object, instead of using the field name.
    delete_if_empty
        Useful for editing a "might_have" related row containing only one
        field.
        If the submitted value is blank, the related row is deleted.
        For the following DBIx::Class schemas:
            package MySchema::Book;
            use base 'DBIx::Class';
    
            __PACKAGE__->load_components(qw/ Core /);
    
            __PACKAGE__->table("book");
    
            __PACKAGE__->add_columns(
                id    => { data_type => "INTEGER" },
                title => { data_type => "TEXT" },
            );
    
            __PACKAGE__->set_primary_key("id");
    
            __PACKAGE__->might_have( review => 'MySchema::Review', 'book' );
    
            1;
            package MySchema::Review;
            use base 'DBIx::Class';
    
            __PACKAGE__->load_components(qw/ Core /);
    
            __PACKAGE__->table("review");
    
            __PACKAGE__->add_columns(
                book        => { data_type => "INTEGER" },
                review_text => { data_type => "TEXT" },
            );
    
            __PACKAGE__->set_primary_key("book");
    
            __PACKAGE__->belongs_to( book => 'MySchema::Book' );
    
            1;
        A suitable form for this would be:
            elements:
              - type: Text
                name: title
      
              - type: Block
                nested_name: review
                elements:
                  - type: Text
                    name: review_text
                    model_config:
                      delete_if_empty: 1
    label
        To use a column value for a form field's label.
  Config options for fields within a Repeatable block
    delete_if_true
        Intended for use on a Checkbox field.
        If the checkbox is checked, the following occurs: for a has-many
        relationship, the related row is deleted; for a many-to-many
        relationship, the relationship link is removed.
        An example of use might be:
            elements:
              - type: Text
                name: title
      
              - type: Hidden
                name: review_count
      
              - type: Repeatable
                nested_name: review
                counter_name: review_count
                elements:
                  - type: Hidden
                    name: book
          
                  - type: Textarea
                    name: review_text
          
                  - type: Checkbox
                    name: delete_review
                    label: 'Delete Review?'
                    model_config:
                      delete_if_true: 1
        Note: make sure the name of this field does not clash with one of
        your DBIx::Class::Row method names (e.g. "delete") - see "CAVEATS".
  Config options for Repeatable blocks
    empty_rows
        For a Repeatable block corresponding to a has-many or many-to-many
        relationship, to allow the user to insert new rows, set "empty_rows"
        to the number of extra repetitions you wish added to the end of the
        Repeatable block.
    new_rows_max
        Set to the maximum number of new rows that a Repeatable block is
        allowed to add.
        If not set, it will fallback to the value of "empty_rows".
  Config options for options_from_model
    The column used for the element values is set with the "model_config"
    value "id_column" - or if not set, the table's primary column is used.
        element:
          - type: Select
            name: foo
            model_config:
              resultset: TableClass
              id_column: pk_col
    The column used for the element labels is set with the "model_config"
    value "label_column" - or if not set, the first text/varchar column
    found in the table is used - or if one is not found, the "id_column" is
    used instead.
        element:
          - type: Select
            name: foo
            model_config:
              resultset: TableClass
              label_column: label_col
    To pass the database label values via the form's localization object,
    set "localize_label"
        element:
          - type: Select
            name: foo
            model_config:
              localize_label: 1
    You can set a "condition", which will be passed as the 1st arguement to
    "search" in DBIx::Class::ResultSet.
        element:
          - type: Select
            name: foo
            model_config:
              resultset: TableClass
              condition:
                type: is_foo
    You can set "attributes", which will be passed as the 2nd arguement to
    "search" in DBIx::Class::ResultSet.
FAQ
  Add extra values not in the form
    To update values to the database which weren't submitted to the form,
    you can first add them to the form with add_valid.
        my $passwd = generate_passwd();
    
        $form->add_valid( passwd => $passwd );
    
        $form->model->update( $row );
    "add_valid" works for fieldnames that don't exist in the form.
  Set a field read only
    You can make a field read only. The value of such fields cannot be
    changed by the user even if they submit a value for it.
      $field->model_config->{read_only} = 1;
  
      - Name: field
        model_config:
          read_only: 1
    See HTML::FormFu::Element::Label.
DEPRECATED
  new_empty_row
    Is deprecated and provided only for backwards compatability. Will be
    removed at some point in the future.
    See "empty_rows" in "Config options for Repeatable blocks" instead.
  new_empty_row_multi
    Is deprecated and provided only for backwards compatability. Will be
    removed at some point in the future.
    See "new_rows_max" in "Config options for Repeatable blocks" instead.
  Range constraint
    The suggestion to use a "Range" constraint on the "count" field to limit
    the number of repetitions of a Repeatable block, has been withdrawn.
    This was only useful in the case that there were no initial rows to be
    edited, otherwise the "max()" value could not be known ahead of time.
    See "empty_rows" in "Config options for Repeatable blocks" instead.
CAVEATS
    To ensure your column's inflators and deflators are called, we have to
    get / set values using their named methods, and not with "get_column" /
    "set_column".
    Because of this, beware of having column names which clash with
    DBIx::Class built-in method-names, such as "delete". - It will have
    obviously undesirable results!
SUPPORT
    Project Page:
    <http://code.google.com/p/html-formfu/>
    Mailing list:
    <http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/html-formfu>
    Mailing list archives:
    <http://lists.scsys.co.uk/pipermail/html-formfu/>
BUGS
    Please submit bugs / feature requests to
    <http://code.google.com/p/html-formfu/issues/list> (preferred) or
    <http://rt.perl.org>.
SUBVERSION REPOSITORY
    The publicly viewable subversion code repository is at
    <http://html-formfu.googlecode.com/svn/trunk/HTML-FormFu-Model-DBIC>.
    If you wish to contribute, you'll need a GMAIL email address. Then just
    ask on the mailing list for commit access.
    If you wish to contribute but for some reason really don't want to sign
    up for a GMAIL account, please post patches to the mailing list
    (although you'll have to wait for someone to commit them).
    If you have commit permissions, use the HTTPS repository url:
    <https://html-formfu.googlecode.com/svn/trunk/HTML-FormFu-Model-DBIC>
SEE ALSO
    HTML::FormFu, DBIx::Class, Catalyst::Controller::HTML::FormFu
AUTHOR
    Carl Franks
CONTRIBUTORS
    Based on the code of "DBIx::Class::HTML::FormFu", which was contributed
    to by:
    Adam Herzog
    Daisuke Maki
    Mario Minati
COPYRIGHT AND LICENSE
    Copyright (C) 2007 by Carl Franks
    Based on the original source code of DBIx::Class::HTMLWidget, copyright
    Thomas Klausner.
    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself, either Perl version 5.8.8 or, at
    your option, any later version of Perl 5 you may have available.
POD ERRORS
    Hey! The above document had some coding errors, which are explained
    below:
    Around line 1403:
        '=item' outside of any '=over'
    Around line 1444:
        You forgot a '=back' before '=head1'
 
     |