| 1 |
<?php |
| 2 |
/** |
| 3 |
* Main plugin file. |
| 4 |
* |
| 5 |
* @package VoiceSearch |
| 6 |
* |
| 7 |
* Plugin Name: Voice Search |
| 8 |
* Plugin URI: https://github.com/swissspidy/voice-search |
| 9 |
* Description: Allows visitors using Google Chrome to search the site using their voice. |
| 10 |
* Version: 1.4.2 |
| 11 |
* Author: Pascal Birchler |
| 12 |
* Author URI: https://pascalbirchler.com |
| 13 |
* License: GPLv2+ |
| 14 |
* Text Domain: voice-search |
| 15 |
* Requires at least: 5.0 |
| 16 |
* Requires PHP: 7.4 |
| 17 |
*/ |
| 18 |
|
| 19 |
/** |
| 20 |
* Copyright (c) 2018 Pascal Birchler (swissspidy@chat.wordpress.org) |
| 21 |
* |
| 22 |
* This program is free software; you can redistribute it and/or modify |
| 23 |
* it under the terms of the GNU General Public License, version 2 or, at |
| 24 |
* your discretion, any later version, as published by the Free |
| 25 |
* Software Foundation. |
| 26 |
* |
| 27 |
* This program is distributed in the hope that it will be useful, |
| 28 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 29 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 30 |
* GNU General Public License for more details. |
| 31 |
* |
| 32 |
* You should have received a copy of the GNU General Public License |
| 33 |
* along with this program; if not, write to the Free Software |
| 34 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 35 |
*/ |
| 36 |
|
| 37 |
defined( 'WPINC' ) or die; |
| 38 |
|
| 39 |
require __DIR__ . '/vendor/autoload.php'; |
| 40 |
|
| 41 |
require_once __DIR__ . '/inc/namespace.php'; |
| 42 |
|
| 43 |
VoiceSearch\bootstrap(); |
| 44 |
|