mirror of
				https://github.com/pragma-/pbot.git
				synced 2025-11-04 08:37:24 +01:00 
			
		
		
		
	Move all command subroutines closer to top of source file Do not send WHO to non-chanop channels Minor misc bugfixes and improvements
		
			
				
	
	
		
			33 lines
		
	
	
		
			858 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			858 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
# This Source Code Form is subject to the terms of the Mozilla Public
 | 
						|
# License, v. 2.0. If a copy of the MPL was not distributed with this
 | 
						|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | 
						|
 | 
						|
# Just a quick interface to test/play with PBot::Utils::ParseDate
 | 
						|
 | 
						|
package Plugins::ParseDate;
 | 
						|
use parent 'Plugins::Plugin';
 | 
						|
 | 
						|
use warnings; use strict;
 | 
						|
use feature 'unicode_strings';
 | 
						|
 | 
						|
use Time::Duration qw/duration/;
 | 
						|
 | 
						|
sub initialize {
 | 
						|
    my ($self, %conf) = @_;
 | 
						|
    $self->{pbot}->{commands}->register(sub { return $self->cmd_parsedate(@_) }, "pd", 0);
 | 
						|
}
 | 
						|
 | 
						|
sub unload {
 | 
						|
    my $self = shift;
 | 
						|
    $self->{pbot}->{commands}->unregister("pd");
 | 
						|
}
 | 
						|
 | 
						|
sub cmd_parsedate {
 | 
						|
    my ($self, $context) = @_;
 | 
						|
    my ($seconds, $error) = $self->{pbot}->{parsedate}->parsedate($context->{arguments});
 | 
						|
    return $error if defined $error;
 | 
						|
    return duration $seconds;
 | 
						|
}
 | 
						|
 | 
						|
1;
 |