File: plugin-config

package info (click to toggle)
movabletype-opensource 5.1.4%2Bdfsg-4%2Bdeb7u3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 32,996 kB
  • sloc: perl: 197,285; php: 62,405; sh: 166; xml: 117; makefile: 83; sql: 32
file content (33 lines) | stat: -rwxr-xr-x 671 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/perl -w
use strict;
use lib '/usr/share/movabletype/extlib';

use MT::Bootstrap;
use MT;
use MT::PluginData;

use Data::Dumper;
$Data::Dumper::Terse = 1;
$Data::Dumper::Indent = 1;
$Data::Dumper::Quotekeys = 0;
$Data::Dumper::Sortkeys = 1;

my $mt = new MT;
my $plugin = $ARGV[0];
my $scope = $ARGV[1] || 'system';
if (!$plugin) {
    print "usage: $0 <plugin_name> [<scope>]\n";
    exit 1;
}

my $config = MT::PluginData->load({
    plugin => $plugin,
    key => $scope eq 'system' ? 'configuration' : 'configuration:' . $scope
});
if (!$config) {
    print "(None)\n";
} else {
    my $data = $config->data;
    my $dump = Dumper($data);
    print $dump;
}