123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- if (!defined('SMF'))
- die('Hacking attempt...');
- class standard_search
- {
-
- public $version_compatible = 'SMF 2.1 ALpha';
-
- public $min_smf_version = 'SMF 2.1 Alpha 1';
-
- public $is_supported = true;
-
- public function supportsMethod($methodName, $query_params = null)
- {
-
- return false;
- }
- }
- ?>
|