notification-center.pl 555 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/local/cpanel/3rdparty/bin/perl
  2. package WHM::Plugin::NotificationCenter;
  3. use strict;
  4. use warnings;
  5. use CGI qw/:standard/;
  6. print header();
  7. use Cpanel::Template;
  8. use lib '/var/cpanel/perl';
  9. use Cpanel::iContact::Provider::Local::Getter;
  10. main() unless caller;
  11. sub main {
  12. my $vars = {
  13. notifications => Cpanel::iContact::Provider::Local::Getter::get( user => $ENV{REMOTE_USER} );
  14. };
  15. Cpanel::Template::process_template( 'whostmgr', { template_file => 'addon_notification-center.tmpl', data => $vars } );
  16. return 0;
  17. }
  18. 1;