Bug 7740: Increment version number
[koha.git] / installer / externalmodules.pl
1 #!/usr/bin/perl
2
3 # This Script can be used to provide a list of ALL external modules ***used*** (uncommented) in Koha.
4 # It provides you not only the list of modules BUT ALSO the files that uses those modules.
5 # utf8 or warnings or other lib use are not taken into account at the moment.
6
7
8 use strict;
9 use warnings;
10 use C4::Context;
11 my $dir=C4::Context->config('intranetdir');
12 qx(grep -r "^ *use" $dir | grep -v "C4\|strict\|vars" >/tmp/modulesKoha.log);
13 $dir=C4::Context->config('opacdir');
14 qx(grep -r "^ *use" $dir | grep -v "C4\|strict\|vars" >>/tmp/modulesKoha.log);
15
16 open FILE, "< /tmp/modulesKoha.log" ||die "unable to open file /tmp/modulesKoha.log";
17 my %modulehash;
18 while (my $line=<FILE>){
19   if ( $line=~m#(.*)\:\s*use\s+([A-Z][^\s;]+)# ){
20     my ($file,$module)=($1,$2);
21     my @filename = split /\//, $file;
22     push @{$modulehash{$module}},$filename[scalar(@filename) - 1];
23   }
24 }
25 print "external modules used in Koha ARE :\n";
26 map {print "* $_ \t in files ",join (",",@{$modulehash{$_}}),"\n" } sort keys %modulehash;
27 close FILE;
28 unlink "/tmp/modulesKoha.log";