Help for this page

Select Code to Download


  1. or download this
    package MyApp::Schema::DB::Result::Table;
    ...
    ...
    sub TO_JSON {
      return { $_[0]->get_inflated_columns };  
    }
    
  2. or download this
    package MyApp::View::JSON;
    
    ...
        my( $self, $c, $data ) = @_;
        $encoder->encode( $data );
    }
    
  3. or download this
    package MyApp::Schema::DB::Result::Base;
    
    ...
    ...
    extends 'MyApp::Schema::DB::Result::Base';
    ...