1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?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;
- }
- }
- ?>
|