View | Details | Raw Unified | Return to bug 39522
Collapse All | Expand All

(-)a/Koha/FrameworkPlugin.pm (-1 / +40 lines)
Lines 213-218 sub _error { Link Here
213
sub _load {
213
sub _load {
214
    my ($self) = @_;
214
    my ($self) = @_;
215
215
216
    # Try to find the class that can handle this plugin
217
    my @plugins = Koha::Plugins->new()->get_valuebuilders_installed();
218
219
    foreach my $vb (@plugins) {
220
        my $plugin = $vb->{plugin};
221
222
        # Check if this plugin provides the value builder we need
223
        if ( $vb->{name} eq $self->{name} ) {
224
225
            # Store the plugin object for later use
226
            $self->{plugin} = $plugin;
227
228
            # Get the builder and launcher directly from the plugin object
229
            if ( $plugin->can('builder_code') ) {
230
                $self->{builder} = sub { return $plugin->builder_code(@_); };
231
            }
232
233
            if ( $plugin->can('launcher') ) {
234
                $self->{launcher} = sub { return $plugin->launcher(@_); };
235
            }
236
237
            if ( !$self->{builder} && !$self->{launcher} ) {
238
                return $self->_error('Plugin does not contain builder_code nor launcher methods');
239
            }
240
241
            $self->{_loaded} = 1;
242
            return 1;
243
        }
244
    }
245
246
    # If not found via plugin, try in standard dir
216
    my ( $rv, $file );
247
    my ( $rv, $file );
217
    return $self->_error('Plugin needs a name') if !$self->{name};    #2chk
248
    return $self->_error('Plugin needs a name') if !$self->{name};    #2chk
218
    $self->{path} //= _valuebuilderpath();
249
    $self->{path} //= _valuebuilderpath();
Lines 291-302 sub _generate_js { Link Here
291
        return $self->_error('Builder sub not defined');
322
        return $self->_error('Builder sub not defined');
292
    }
323
    }
293
324
325
    # Make a copy of params and add the plugin object to it
326
    my $builder_params = {%$params};
327
328
    # Add the value builder's plugin if available
329
    if ( $self->{name} && $self->{plugin} ) {
330
        $builder_params->{plugin} = $self->{plugin};
331
    }
332
294
    my @params = $self->{oldschool} // 0
333
    my @params = $self->{oldschool} // 0
295
        ? (
334
        ? (
296
        $params->{dbh}, $params->{record}, $params->{tagslib},
335
        $params->{dbh}, $params->{record}, $params->{tagslib},
297
        $params->{id}
336
        $params->{id}
298
        )
337
        )
299
        : ($params);
338
        : ($builder_params);
300
    my @rv = &$sub(@params);
339
    my @rv = &$sub(@params);
301
    return $self->_error( 'Builder sub failed: ' . $@ ) if $@;
340
    return $self->_error( 'Builder sub failed: ' . $@ ) if $@;
302
341
(-)a/Koha/Plugins.pm (+36 lines)
Lines 378-383 sub _restart_after_change { Link Here
378
    kill 'HUP', $parent_pid;
378
    kill 'HUP', $parent_pid;
379
}
379
}
380
380
381
=head2 get_valuebuilders_installed
382
383
    my @valuebuilders = Koha::Plugins->new->get_valuebuilders_installed();
384
385
Returns a list of all valuebuilder plugins provided by plugins.
386
387
=cut
388
389
sub get_valuebuilders_installed {
390
    my ($self) = @_;
391
392
    # Get ENABLED plugins
393
    my @plugins = $self->get_enabled_plugins();
394
395
    my @valuebuilders;
396
397
    foreach my $plugin (@plugins) {
398
399
        # Check if plugin implements get_valuebuilder method
400
        if ( $plugin->can('get_valuebuilder') ) {
401
402
            # Get the value builder from the plugin
403
            my $valuebuilder = $plugin->get_valuebuilder();
404
405
            if ($valuebuilder) {
406
                push @valuebuilders, {
407
                    name   => $valuebuilder,
408
                    plugin => $plugin,
409
                };
410
            }
411
        }
412
    }
413
414
    return @valuebuilders;
415
}
416
381
1;
417
1;
382
__END__
418
__END__
383
419
(-)a/Koha/Plugins/Base.pm (+36 lines)
Lines 200-205 sub get_metadata { Link Here
200
    return $metadata;
200
    return $metadata;
201
}
201
}
202
202
203
=head2 get_valuebuilders
204
205
    Get valuebuilder identifier provided by this plugin
206
    my $valuebuilder_id = $plugin->get_valuebuilders();
207
208
=cut
209
210
sub get_valuebuilders {
211
    my ($self) = @_;
212
213
    # If this plugin has a get_valuebuilder method that returns a non-empty value,
214
    # return that value in an array reference
215
    if ( $self->can('get_valuebuilder') ) {
216
        my $vb = $self->get_valuebuilder();
217
        return $vb ? [$vb] : [];
218
    }
219
220
    return [];
221
}
222
203
=head2 get_qualified_table_name
223
=head2 get_qualified_table_name
204
224
205
To avoid naming conflict, each plugins tables should use a fully qualified namespace.
225
To avoid naming conflict, each plugins tables should use a fully qualified namespace.
Lines 391-396 sub disable { Link Here
391
    return $self;
411
    return $self;
392
}
412
}
393
413
414
=head2 get_valuebuilder_url
415
416
    Returns the full URL to launch this plugin's value builder
417
418
    my $url = $plugin->get_valuebuilder_url();
419
420
=cut
421
422
sub get_valuebuilder_url {
423
    my ($self) = @_;
424
425
    # Generate the URL to run.pl with the launcher method
426
    my $plugin_class = ref($self);
427
    return "/cgi-bin/koha/plugins/run.pl?class=$plugin_class&method=launcher";
428
}
429
394
1;
430
1;
395
__END__
431
__END__
396
432
(-)a/admin/marc_subfields_structure.pl (-1 / +25 lines)
Lines 126-131 if ( $op eq 'add_form' ) { Link Here
126
    @value_builder = sort { $a cmp $b } @value_builder;
126
    @value_builder = sort { $a cmp $b } @value_builder;
127
    closedir $dir_h;
127
    closedir $dir_h;
128
128
129
    # Add valuebuilders from plugins
130
    if ( C4::Context->config("enable_plugins") ) {
131
        require Koha::Plugins;
132
        my $plugins = Koha::Plugins->new();
133
134
        # Get all plugins first to debug
135
        my @all_plugins = $plugins->GetPlugins();
136
        foreach my $plugin (@all_plugins) {
137
            ( $plugin->can('get_valuebuilders') ? "yes" : "no" );
138
        }
139
140
        # Use the dedicated get_valuebuilders_installed method
141
        my @plugin_valuebuilders = $plugins->get_valuebuilders_installed();
142
143
        foreach my $vb_entry (@plugin_valuebuilders) {
144
            my $vb_name = $vb_entry->{name};
145
146
            # Avoid duplicates
147
            push( @value_builder, $vb_name ) unless grep { $_ eq $vb_name } @value_builder;
148
        }
149
150
        # Re-sort the list after adding plugin valuebuilders
151
        @value_builder = sort { $a cmp $b } @value_builder;
152
    }
153
129
    # build values list
154
    # build values list
130
    my $mss = Koha::MarcSubfieldStructures->search(
155
    my $mss = Koha::MarcSubfieldStructures->search(
131
        { tagfield => $tagfield, frameworkcode => $frameworkcode },
156
        { tagfield => $tagfield, frameworkcode => $frameworkcode },
132
- 

Return to bug 39522