0byt3m1n1
Path:
/
data
/
applications
/
aps
/
geeklog
/
1.8.0-0
/
standard
/
htdocs
/
plugins
/
spamx
/
[
Home
]
File: BaseCommand.class.php
<?php /** * Basic Command Abstract class * * @author Tom Willett tomw AT pigstye DOT net * * @package Spam-X * @subpackage Modules * @abstract * */ class BaseCommand { /** * * @access public */ var $result = null; // Result of execute command var $num = 0; // Action Number /** * Constructor * * @access public */ function BaseCommand() { } function execute($comment) { return 0; } function result() { global $result; return $result; } function number() { global $num; return $num; } } ?>